Skip to content

Commit 224817e

Browse files
committed
reformat pom & add breaking change for 3.1.4
1 parent c139e84 commit 224817e

1 file changed

Lines changed: 88 additions & 85 deletions

File tree

pom.xml

Lines changed: 88 additions & 85 deletions
Original file line numberDiff line numberDiff line change
@@ -1,100 +1,103 @@
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-
<modelVersion>4.0.0</modelVersion>
3-
<parent>
4-
<groupId>org.jenkins-ci.plugins</groupId>
5-
<artifactId>plugin</artifactId>
6-
<version>3.50</version>
7-
</parent>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>org.jenkins-ci.plugins</groupId>
7+
<artifactId>plugin</artifactId>
8+
<version>3.50</version>
9+
</parent>
810

911
<properties>
1012
<jenkins.version>1.642.3</jenkins.version>
1113
<java.level>8</java.level>
14+
<hpi.compatibleSinceVersion>3.1.4</hpi.compatibleSinceVersion>
1215
</properties>
1316

14-
<artifactId>Parameterized-Remote-Trigger</artifactId>
15-
<version>3.1.5-SNAPSHOT</version>
16-
<packaging>hpi</packaging>
17-
<name>Parameterized Remote Trigger Plugin</name>
18-
<description>This plugin gives you the ability to trigger parameterized builds on a remote Jenkins server as part of your build.</description>
19-
<url>https://github.com/jenkinsci/parameterized-remote-trigger-plugin</url>
17+
<artifactId>Parameterized-Remote-Trigger</artifactId>
18+
<version>3.1.5-SNAPSHOT</version>
19+
<packaging>hpi</packaging>
20+
<name>Parameterized Remote Trigger Plugin</name>
21+
<description>This plugin gives you the ability to trigger parameterized builds on a remote Jenkins server as part of your build.</description>
22+
<url>https://github.com/jenkinsci/parameterized-remote-trigger-plugin</url>
2023

21-
<licenses>
22-
<license>
23-
<name>MIT license</name>
24-
<comments>All source code is under the MIT license.</comments>
25-
</license>
26-
</licenses>
24+
<licenses>
25+
<license>
26+
<name>MIT license</name>
27+
<comments>All source code is under the MIT license.</comments>
28+
</license>
29+
</licenses>
2730

28-
<developers>
29-
<developer>
30-
<id>cashlalala</id>
31-
<name>KaiHsiang Chang</name>
32-
</developer>
33-
</developers>
31+
<developers>
32+
<developer>
33+
<id>cashlalala</id>
34+
<name>KaiHsiang Chang</name>
35+
</developer>
36+
</developers>
3437

35-
<build>
36-
<plugins>
37-
<plugin>
38-
<groupId>org.jenkins-ci.tools</groupId>
39-
<artifactId>maven-hpi-plugin</artifactId>
40-
<!-- https://wiki.jenkins-ci.org/display/JENKINS/Marking+a+new+plugin+version+as+incompatible+with+older+versions -->
41-
<configuration>
42-
<compatibleSinceVersion>3.0.4-SNAPSHOT</compatibleSinceVersion>
43-
</configuration>
44-
</plugin>
45-
</plugins>
46-
</build>
38+
<build>
39+
<plugins>
40+
<plugin>
41+
<groupId>org.jenkins-ci.tools</groupId>
42+
<artifactId>maven-hpi-plugin</artifactId>
43+
<!-- https://wiki.jenkins-ci.org/display/JENKINS/Marking+a+new+plugin+version+as+incompatible+with+older+versions -->
44+
<configuration>
45+
<compatibleSinceVersion>3.0.4-SNAPSHOT</compatibleSinceVersion>
46+
</configuration>
47+
</plugin>
48+
</plugins>
49+
</build>
4750

48-
<scm>
49-
<connection>scm:git:git://github.com/jenkinsci/parameterized-remote-trigger-tlugin.git</connection>
50-
<developerConnection>scm:git:git@github.com:jenkinsci/parameterized-remote-trigger-plugin.git</developerConnection>
51-
<url>https://github.com/jenkinsci/parameterized-remote-trigger-plugin</url>
52-
<tag>HEAD</tag>
53-
</scm>
51+
<scm>
52+
<connection>scm:git:git://github.com/jenkinsci/parameterized-remote-trigger-tlugin.git</connection>
53+
<developerConnection>scm:git:git@github.com:jenkinsci/parameterized-remote-trigger-plugin.git</developerConnection>
54+
<url>https://github.com/jenkinsci/parameterized-remote-trigger-plugin</url>
55+
<tag>HEAD</tag>
56+
</scm>
5457

55-
<repositories>
56-
<repository>
57-
<id>repo.jenkins-ci.org</id>
58-
<url>https://repo.jenkins-ci.org/public/</url>
59-
</repository>
60-
</repositories>
58+
<repositories>
59+
<repository>
60+
<id>repo.jenkins-ci.org</id>
61+
<url>https://repo.jenkins-ci.org/public/</url>
62+
</repository>
63+
</repositories>
6164

62-
<pluginRepositories>
63-
<pluginRepository>
64-
<id>repo.jenkins-ci.org</id>
65-
<url>https://repo.jenkins-ci.org/public/</url>
66-
</pluginRepository>
67-
</pluginRepositories>
65+
<pluginRepositories>
66+
<pluginRepository>
67+
<id>repo.jenkins-ci.org</id>
68+
<url>https://repo.jenkins-ci.org/public/</url>
69+
</pluginRepository>
70+
</pluginRepositories>
6871

69-
<dependencies>
70-
<dependency>
71-
<groupId>org.jenkins-ci.plugins</groupId>
72-
<artifactId>credentials</artifactId>
73-
<version>2.1.16</version>
74-
</dependency>
75-
<dependency>
76-
<groupId>org.jenkins-ci.plugins</groupId>
77-
<artifactId>token-macro</artifactId>
78-
<version>2.3</version>
79-
</dependency>
80-
<dependency>
81-
<groupId>org.jenkins-ci.plugins</groupId>
82-
<artifactId>script-security</artifactId>
83-
<version>1.34</version>
84-
<optional>true</optional>
85-
</dependency>
86-
<dependency>
87-
<groupId>org.jenkins-ci.plugins.workflow</groupId>
88-
<artifactId>workflow-step-api</artifactId>
89-
<version>2.13</version>
90-
<optional>true</optional>
91-
</dependency>
92-
<dependency>
93-
<groupId>org.mockito</groupId>
94-
<artifactId>mockito-core</artifactId>
95-
<version>2.18.3</version>
96-
<scope>test</scope>
97-
</dependency>
98-
</dependencies>
72+
<dependencies>
73+
<dependency>
74+
<groupId>org.jenkins-ci.plugins</groupId>
75+
<artifactId>credentials</artifactId>
76+
<version>2.1.16</version>
77+
</dependency>
78+
<dependency>
79+
<groupId>org.jenkins-ci.plugins</groupId>
80+
<artifactId>token-macro</artifactId>
81+
<version>2.3</version>
82+
</dependency>
83+
<dependency>
84+
<groupId>org.jenkins-ci.plugins</groupId>
85+
<artifactId>script-security</artifactId>
86+
<version>1.34</version>
87+
<optional>true</optional>
88+
</dependency>
89+
<dependency>
90+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
91+
<artifactId>workflow-step-api</artifactId>
92+
<version>2.13</version>
93+
<optional>true</optional>
94+
</dependency>
95+
<dependency>
96+
<groupId>org.mockito</groupId>
97+
<artifactId>mockito-core</artifactId>
98+
<version>2.18.3</version>
99+
<scope>test</scope>
100+
</dependency>
101+
</dependencies>
99102

100103
</project>

0 commit comments

Comments
 (0)