Skip to content

Commit ca2a1f6

Browse files
committed
Plugin metadata refresh to 2.361.x
1 parent 2e09f1f commit ca2a1f6

File tree

4 files changed

+18
-34
lines changed

4 files changed

+18
-34
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @jenkinsci/docker-commons-plugin-developers

.mvn/extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<extension>
33
<groupId>io.jenkins.tools.incrementals</groupId>
44
<artifactId>git-changelist-maven-extension</artifactId>
5-
<version>1.4</version>
5+
<version>1.6</version>
66
</extension>
77
</extensions>

Jenkinsfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
buildPlugin()
1+
buildPlugin(
2+
useContainerAgent: true,
3+
configurations: [
4+
[platform: 'linux', jdk: 17],
5+
[platform: 'windows', jdk: 11],
6+
])

pom.xml

Lines changed: 10 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.jenkins-ci.plugins</groupId>
77
<artifactId>plugin</artifactId>
8-
<version>4.46</version>
8+
<version>4.55</version>
99
<relativePath />
1010
</parent>
1111

@@ -15,29 +15,26 @@
1515
<packaging>hpi</packaging>
1616

1717
<name>Docker Commons Plugin</name>
18-
<description>APIs useful to Docker-based plugins.</description>
19-
<url>https://github.com/jenkinsci/docker-commons-plugin</url>
18+
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
2019
<licenses>
2120
<license>
2221
<name>MIT License</name>
2322
<url>https://opensource.org/licenses/MIT</url>
2423
</license>
2524
</licenses>
2625

27-
<scm>
28-
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
29-
<developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
30-
<url>http://github.com/jenkinsci/${project.artifactId}-plugin</url>
26+
<scm child.scm.connection.inherit.append.path="false" child.scm.developerConnection.inherit.append.path="false" child.scm.url.inherit.append.path="false">
27+
<connection>scm:git:https://github.com/${gitHubRepo}</connection>
28+
<developerConnection>scm:git:https://github.com/${gitHubRepo}</developerConnection>
3129
<tag>${scmTag}</tag>
30+
<url>https://github.com/${gitHubRepo}</url>
3231
</scm>
3332

3433
<properties>
3534
<revision>1.22</revision>
3635
<changelist>-SNAPSHOT</changelist>
37-
<bom>2.263</bom>
38-
<jenkins.version>2.263.1</jenkins.version>
39-
<pipeline-model-definition.version>1.9.3</pipeline-model-definition.version>
40-
<jcasc.version>1.51</jcasc.version>
36+
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
37+
<jenkins.version>2.361.4</jenkins.version>
4138
</properties>
4239

4340
<repositories>
@@ -71,7 +68,6 @@
7168
<dependency>
7269
<groupId>org.jenkinsci.plugins</groupId>
7370
<artifactId>pipeline-model-extensions</artifactId>
74-
<version>${pipeline-model-definition.version}</version>
7571
<!-- optional because the dependency subtree is quite large -->
7672
<optional>true</optional>
7773
</dependency>
@@ -142,47 +138,29 @@
142138
<dependency>
143139
<groupId>org.jenkinsci.plugins</groupId>
144140
<artifactId>pipeline-model-definition</artifactId>
145-
<version>${pipeline-model-definition.version}</version>
146141
<scope>test</scope>
147142
</dependency>
148143
<!-- Dependencies for testing JCasC compatibility-->
149144
<dependency>
150145
<groupId>io.jenkins</groupId>
151146
<artifactId>configuration-as-code</artifactId>
152-
<version>${jcasc.version}</version>
153147
<scope>test</scope>
154148
</dependency>
155149
<dependency>
156150
<groupId>io.jenkins.configuration-as-code</groupId>
157151
<artifactId>test-harness</artifactId>
158-
<version>${jcasc.version}</version>
159152
<scope>test</scope>
160153
</dependency>
161154
</dependencies>
162155
<dependencyManagement>
163156
<dependencies>
164157
<dependency>
165158
<groupId>io.jenkins.tools.bom</groupId>
166-
<artifactId>bom-${bom}.x</artifactId>
167-
<version>984.vb5eaac999a7e</version>
159+
<artifactId>bom-2.361.x</artifactId>
160+
<version>1886.va_11c9f461054</version>
168161
<scope>import</scope>
169162
<type>pom</type>
170163
</dependency>
171-
<dependency>
172-
<groupId>org.jenkins-ci.plugins</groupId>
173-
<artifactId>credentials</artifactId>
174-
<version>2.6.1</version>
175-
</dependency>
176-
<dependency>
177-
<groupId>org.jenkinsci.plugins</groupId>
178-
<artifactId>pipeline-model-api</artifactId>
179-
<version>${pipeline-model-definition.version}</version>
180-
</dependency>
181-
<dependency>
182-
<groupId>org.jenkinsci.plugins</groupId>
183-
<artifactId>pipeline-stage-tags-metadata</artifactId>
184-
<version>${pipeline-model-definition.version}</version>
185-
</dependency>
186164
</dependencies>
187165
</dependencyManagement>
188166

0 commit comments

Comments
 (0)