Skip to content

Commit 7ff5ad5

Browse files
authored
Merge pull request #34 from strangelookingnerd/JENKINS-76192
[JENKINS-76192] Testing core incremental
2 parents 5401cdd + 2a62796 commit 7ff5ad5

File tree

4 files changed

+22
-9
lines changed

4 files changed

+22
-9
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/.idea/*
12
/build.eclipse/
23
/target/
34
/work/

.mvn/extensions.xml

Lines changed: 7 additions & 0 deletions
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.13</version>
6+
</extension>
7+
</extensions>

.mvn/maven.config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
-Pconsume-incrementals
2+
-Pmight-produce-incrementals

pom.xml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,17 @@
88
</parent>
99

1010
<artifactId>sonargraph-integration</artifactId>
11-
<version>5.0.3-SNAPSHOT</version>
11+
<version>${revision}${changelist}</version>
1212
<name>Sonargraph Integration Jenkins Plugin</name>
1313
<packaging>hpi</packaging>
1414

1515
<properties>
16+
<revision>5.0.3</revision>
17+
<changelist>-SNAPSHOT</changelist>
18+
<gitHubRepo>jenkinsci/sonargraph-integration-plugin</gitHubRepo>
1619
<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
17-
<jenkins.baseline>2.479</jenkins.baseline>
18-
<jenkins.version>${jenkins.baseline}.3</jenkins.version>
20+
<jenkins.baseline>2.528</jenkins.baseline>
21+
<jenkins.version>2.532-rc37605.6b_b_2172b_1592</jenkins.version>
1922
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2023
<animal.sniffer.skip>true</animal.sniffer.skip>
2124
<spotbugs.skip>true</spotbugs.skip>
@@ -55,7 +58,7 @@
5558
<dependency>
5659
<groupId>io.jenkins.tools.bom</groupId>
5760
<artifactId>bom-${jenkins.baseline}.x</artifactId>
58-
<version>5054.v620b_5d2b_d5e6</version>
61+
<version>5506.va_222b_131ec34</version>
5962
<type>pom</type>
6063
<scope>import</scope>
6164
</dependency>
@@ -233,16 +236,16 @@
233236
<url>https://www.hello2morrow.com</url>
234237
</organization>
235238
<scm>
236-
<connection>scm:git:https://github.com/jenkinsci/sonargraph-integration-plugin.git</connection>
237-
<developerConnection>scm:git:https://github.com/jenkinsci/sonargraph-integration-plugin.git</developerConnection>
238-
<url>https://github.com/jenkinsci/sonargraph-integration-plugin</url>
239-
<tag>HEAD</tag>
239+
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
240+
<developerConnection>scm:git:https://github.com/${gitHubRepo}.git</developerConnection>
241+
<url>https://github.com/${gitHubRepo}</url>
242+
<tag>${scmTag}</tag>
240243
</scm>
241244

242245
<licenses>
243246
<license>
244247
<name>Apache License 2</name>
245-
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
248+
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
246249
</license>
247250
</licenses>
248251

0 commit comments

Comments
 (0)