blob: 584970b935e287e9b9e4748d2c253a9b036f4644 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<?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>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>3.0</version>
</parent>
<artifactId>bbprb</artifactId>
<name>Bitbucket Pullrequest Builder Plugin</name>
<version>0.3.0</version>
<description>This Jenkins plugin builds pull requests from Bitbucket.org and will report the test results.</description>
<packaging>hpi</packaging>
<url></url>
<scm>
<connection>https://github.com/ip1981/bbprb.git</connection>
<url>https://github.com/ip1981/bbprb.git</url>
<tag>HEAD</tag>
</scm>
<properties>
<findbugs.failOnError>false</findbugs.failOnError>
</properties>
<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>
</developer>
<developer>
<id>damovsky</id>
<name>Martin Damovsky</name>
<email>martin.damovsky@gmail.com</email>
</developer>
</developers>
<!-- get every artifact through repo.jenkins-ci.org, which proxies all the artifacts that we need -->
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-jaxrs</artifactId>
<version>1.9.13</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>credentials</artifactId>
<version>2.1.16</version>
</dependency>
</dependencies>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
</project>
|