<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.jenkins-ci.plugins</groupId>
    <artifactId>plugin</artifactId>
    <version>1.480</version>
  </parent>

  <artifactId>backlog</artifactId>
  <packaging>hpi</packaging>
  <version>1.9</version>
  <name>Jenkins Backlog plugin</name>
  <description>Integrates Jenkins to Backlog</description>
  <url>http://wiki.jenkins-ci.org/display/JENKINS/Backlog+Plugin</url>
  <developers>
    <developer>
      <id>dragon3</id>
      <name>Ryuzo Yamamoto</name>
    </developer>
    <developer>
      <id>ikikko</id>
      <name>Tomonari Nakamura</name>
    </developer>
  </developers>
  <scm>
  	<connection>scm:git:git://github.com/jenkinsci/backlog-plugin.git</connection>
  	<developerConnection>scm:git:git@github.com:jenkinsci/backlog-plugin.git</developerConnection>
  	<url>http://github.com/jenkinsci/backlog-plugin</url>
  </scm>
  <build>
  	<plugins>
  		<plugin>
  			<groupId>org.apache.maven.plugins</groupId>
  			<artifactId>maven-compiler-plugin</artifactId>
  			<version>2.3.2</version>
  			<configuration>
  			   <encoding>UTF-8</encoding>
  			</configuration>
  		</plugin>
  	</plugins>
  </build>
  <dependencies>
    <dependency>
        <groupId>org.apache.xmlrpc</groupId>
        <artifactId>xmlrpc-client</artifactId>
        <version>3.1.3</version>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.8.2</version>
        <scope>test</scope>
    </dependency>
    <dependency>
    	<groupId>org.jvnet.hudson.plugins</groupId>
    	<artifactId>subversion</artifactId>
    	<version>1.11</version>
    </dependency>
    <dependency>
    	<groupId>com.googlecode.sardine</groupId>
    	<artifactId>sardine</artifactId>
    	<version>314</version>
    </dependency>
    <dependency>
    	<groupId>org.slf4j</groupId>
    	<artifactId>slf4j-jcl</artifactId>
    	<version>1.6.4</version>
    	<scope>runtime</scope>
    </dependency>
    <dependency>
    	<groupId>org.jenkinsci.plugins</groupId>
    	<artifactId>git</artifactId>
    	<version>1.1.22</version>
    	<optional>true</optional>
    </dependency>
  </dependencies>

  <repositories>
    <repository>
      <id>repo.jenkins-ci.org</id>
      <url>http://repo.jenkins-ci.org/public/</url>
    </repository>
    <repository>
      <id>sardine-google-svn-repo</id>
      <name>Sardine maven repo at Google Code</name>
      <url>http://sardine.googlecode.com/svn/maven/</url>
    </repository>
    <repository>
      <id>jgit-repository</id>
      <name>Eclipse JGit Repository</name>
      <url>http://download.eclipse.org/jgit/maven</url>
    </repository>
  </repositories>

    <pluginRepositories>
        <pluginRepository>
            <id>repo.jenkins-ci.org</id>
            <url>http://repo.jenkins-ci.org/public/</url>
        </pluginRepository>
    </pluginRepositories>
</project>  

