aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml48
1 files changed, 13 insertions, 35 deletions
diff --git a/pom.xml b/pom.xml
index f204feb..3239296 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,3 +1,4 @@
+<?xml version="1.0"?>
<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>
@@ -5,22 +6,24 @@
<artifactId>plugin</artifactId>
<version>2.11</version>
</parent>
-
- <artifactId>bitbucket-pullrequest-builder</artifactId>
+ <artifactId>bbprb</artifactId>
<name>Bitbucket Pullrequest Builder Plugin</name>
- <version>1.4.26-SNAPSHOT</version>
+ <version>0.1.0</version>
<description>This Jenkins plugin builds pull requests from Bitbucket.org and will report the test results.</description>
<packaging>hpi</packaging>
- <url>https://wiki.jenkins-ci.org/display/JENKINS/Bitbucket+pullrequest+builder+plugin</url>
-
+ <url></url>
<scm>
- <connection>scm:git:ssh://git@github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git</connection>
- <developerConnection>scm:git:ssh://git@github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git</developerConnection>
- <url>https://github.com/jenkinsci/bitbucket-pullrequest-builder-plugin.git</url>
+ <connection>https://github.com/ip1981/bbprb.git</connection>
+ <url>https://github.com/ip1981/bbprb.git</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
+ <id>ip1981</id>
+ <name>Igor Pashev</name>
+ <email>pashev.igor@gmail.com</email>
+ </developer>
+ <developer>
<id>nishio_dens</id>
<name>nishio_dens</name>
<email>nishio@densan-labs.net</email>
@@ -30,33 +33,16 @@
<name>Martin Damovsky</name>
<email>martin.damovsky@gmail.com</email>
</developer>
- </developers>
-
+ </developers>
<!-- get every artifact through repo.jenkins-ci.org, which proxies all the artifacts that we need -->
- <repositories>
+ <repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
-
<dependencies>
<dependency>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-http</artifactId>
- <version>2.4</version>
- </dependency>
- <dependency>
- <groupId>commons-httpclient</groupId>
- <artifactId>commons-httpclient</artifactId>
- <version>3.1</version>
- </dependency>
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>1.9</version>
- </dependency>
- <dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-jaxrs</artifactId>
<version>1.9.13</version>
@@ -76,19 +62,11 @@
<artifactId>guava</artifactId>
<version>14.0-rc3</version>
</dependency>
- <dependency>
- <groupId>org.easymock</groupId>
- <artifactId>easymock</artifactId>
- <version>3.4</version>
- <scope>test</scope>
- </dependency>
</dependencies>
-
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
-
</project>