<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.jvnet.hudson.plugins</groupId>
    <artifactId>plugin</artifactId>
    <version>1.345</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

  <artifactId>git</artifactId>
  <version>1.0</version>
  <packaging>hpi</packaging>
  <name>Hudson GIT plugin</name>
  <description>Integrates Hudson to GIT SCM</description>
  <url>http://wiki.hudson-ci.org/display/HUDSON/Git+Plugin</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  </properties>

  <repositories>
    <repository>
      <id>jgit-snapshot-repository</id>
      <url>http://egit.googlecode.com/svn/maven/snapshot-repository</url>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
      <releases>
        <enabled>false</enabled>
      </releases>
    </repository>
    
    <repository>
      <id>jgit-release-repository</id>
      <url>http://egit.googlecode.com/svn/maven</url>
      <snapshots>
        <enabled>false</enabled>
      </snapshots>
      <releases>
        <enabled>true</enabled>
      </releases>
    </repository>
    
    <repository>
      <id>guice-maven</id>
      <name>guice maven</name>
      <url>http://guice-maven.googlecode.com/svn/trunk</url>
    </repository>
  </repositories>

  <dependencies>
    <dependency>
      <groupId>org.spearce</groupId>
      <artifactId>jgit</artifactId>
      <!-- SEE README! -->
      <version>0.4-47e4af3</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.eclipse.jgit</groupId>
      <artifactId>org.eclipse.jgit</artifactId>
      <version>0.5.1.51-g96b2e76</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>joda-time</groupId>
      <artifactId>joda-time</artifactId>
      <version>1.5.1</version>
    </dependency>
    <dependency>
      <groupId>com.google.code.guice</groupId>
      <artifactId>guice</artifactId>
      <version>2.0.1</version>
    </dependency>
  </dependencies>

  <scm>
    <connection>scm:git:git://github.com/hudson/Hudson-GIT-plugin.git</connection>
    <developerConnection>scm:git:git@github.com:hudson/Hudson-GIT-plugin.git</developerConnection>
    <url>http://github.com/hudson/Hudson-GIT-plugin</url>
  </scm>

</project>
