Skip to content

Commit f5c9b51

Browse files
committed
1 parent d1ac87b commit f5c9b51

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

.mvn/extensions.xml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<extensions xmlns="http://maven.apache.org/EXTENSIONS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0 http://maven.apache.org/xsd/core-extensions-1.0.0.xsd">
2+
<extension>
3+
<groupId>io.jenkins.tools.incrementals</groupId>
4+
<artifactId>git-changelist-maven-extension</artifactId>
5+
<version>1.0-beta-7</version>
6+
</extension>
7+
</extensions>

.mvn/maven.config

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-Pconsume-incrementals
2+
-Pmight-produce-incrementals

pom.xml

+11-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</parent>
99

1010
<artifactId>ant</artifactId>
11-
<version>1.9-SNAPSHOT</version>
11+
<version>${revision}${changelist}</version>
1212
<packaging>hpi</packaging>
1313
<name>Ant Plugin</name>
1414
<description>Adds Apache Ant support to Jenkins</description>
@@ -24,10 +24,12 @@
2424
<scm>
2525
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
2626
<developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
27-
<tag>HEAD</tag>
27+
<tag>${scmTag}</tag>
2828
</scm>
2929

3030
<properties>
31+
<revision>1.9</revision>
32+
<changelist>-SNAPSHOT</changelist>
3133
<jenkins.version>2.121.2</jenkins.version>
3234
<java.level>8</java.level>
3335
</properties>
@@ -71,7 +73,13 @@
7173
<dependency>
7274
<groupId>org.jenkins-ci.plugins.workflow</groupId>
7375
<artifactId>workflow-durable-task-step</artifactId>
74-
<version>2.22</version>
76+
<version>2.23-rc763.103ba9929364</version> <!-- TODO https://github.com/jenkinsci/workflow-durable-task-step-plugin/pull/81 -->
77+
<scope>test</scope>
78+
</dependency>
79+
<dependency>
80+
<groupId>org.jenkins-ci.plugins</groupId>
81+
<artifactId>durable-task</artifactId>
82+
<version>1.27-rc372.48473ef5775d</version> <!-- TODO https://github.com/jenkinsci/durable-task-plugin/pull/84 -->
7583
<scope>test</scope>
7684
</dependency>
7785
<dependency>

0 commit comments

Comments
 (0)