|
1 | 1 | <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">
|
2 | 2 | <modelVersion>4.0.0</modelVersion>
|
| 3 | + |
3 | 4 | <parent>
|
4 | 5 | <groupId>org.jenkins-ci.plugins</groupId>
|
5 | 6 | <artifactId>plugin</artifactId>
|
6 |
| - <version>1.580</version><!-- which version of Jenkins is this plugin built against? --> |
| 7 | + <version>2.4</version> |
7 | 8 | </parent>
|
| 9 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 10 | + <artifactId>gogs-webhook</artifactId> |
| 11 | + <version>1.0.0</version> |
| 12 | + <packaging>hpi</packaging> |
8 | 13 |
|
9 |
| - <developers> |
10 |
| - <developer> |
11 |
| - <id>sanderv32</id> |
12 |
| - <name>Alexander Verhaar</name> |
13 |
| - </developer> |
14 |
| - </developers> |
| 14 | + <properties> |
| 15 | + <jenkins.version>1.625.3</jenkins.version> |
| 16 | + <java.level>7</java.level> |
| 17 | + <jenkins-test-harness.version>2.1</jenkins-test-harness.version> |
| 18 | + <additionalparam>-Xdoclint:none</additionalparam> |
| 19 | + </properties> |
| 20 | + |
| 21 | + <name>Jenkins Gogs plugin</name> |
| 22 | + <description>Adds Gogs integration to Jenkins</description> |
| 23 | + <url>https://github.com/jenkinsci/gogs-webhook-plugin.git</url> |
15 | 24 |
|
16 | 25 | <licenses>
|
17 | 26 | <license>
|
18 |
| - <name>MIT</name> |
| 27 | + <name>The MIT license</name> |
19 | 28 | <url>http://www.opensource.org/licenses/mit-license.php</url>
|
| 29 | + <distribution>repo</distribution> |
20 | 30 | </license>
|
21 | 31 | </licenses>
|
22 | 32 |
|
23 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
24 |
| - <artifactId>gogs-webhook</artifactId> |
25 |
| - <version>0.8.45</version> |
26 |
| - <packaging>hpi</packaging> |
27 |
| - <name>Jenkins Gogs plugin</name> |
28 |
| - <description>Adds Gogs integration to Jenkins</description> |
29 |
| - <url>https://github.com/sanderv32/gogs-webhook-plugin.git</url> |
| 33 | + <developers> |
| 34 | + <developer> |
| 35 | + <id>sanderv32</id> |
| 36 | + <name>Alexander Verhaar</name> |
| 37 | + </developer> |
| 38 | + </developers> |
30 | 39 |
|
31 | 40 | <dependencies>
|
| 41 | + <dependency> |
| 42 | + <groupId>org.jenkins-ci.main</groupId> |
| 43 | + <artifactId>jenkins-war</artifactId> |
| 44 | + <type>war</type> |
| 45 | + <version>${jenkins.version}</version> |
| 46 | + <scope>test</scope> |
| 47 | + </dependency> |
32 | 48 | <dependency>
|
33 | 49 | <groupId>org.jenkins-ci.plugins</groupId>
|
34 | 50 | <artifactId>git</artifactId>
|
35 | 51 | <version>2.2.5</version>
|
36 | 52 | </dependency>
|
| 53 | + <dependency> |
| 54 | + <groupId>org.apache.httpcomponents</groupId> |
| 55 | + <artifactId>httpclient</artifactId> |
| 56 | + <version>4.5.1</version> |
| 57 | + </dependency> |
37 | 58 | </dependencies>
|
38 | 59 |
|
39 | 60 | <!-- get every artifact through repo.jenkins-ci.org, which proxies all the artifacts that we need -->
|
|
52 | 73 | </pluginRepositories>
|
53 | 74 |
|
54 | 75 | <scm>
|
55 |
| - <connection>scm:git:git://github.com/sanderv32/${project.artifctId}-plugin.git</connection> |
56 |
| - <developerConnection>scm:git:git@github.com:sanderv32/${project.artifactId}-plugin.git</developerConnection> |
57 |
| - <url>http://github.com/sanderv32/${project.artifactId}-plugin</url> |
| 76 | + <connection>scm:git:git://github.com/jenkinsci/${project.artifctId}-plugin.git</connection> |
| 77 | + <developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection> |
| 78 | + <url>http://github.com/jenkinsci/${project.artifactId}-plugin</url> |
58 | 79 | <tag>HEAD</tag>
|
59 | 80 | </scm>
|
60 | 81 | </project>
|
0 commit comments