Skip to content

Commit 04e9c17

Browse files
authored
Refresh plugin build for May 2024 (#45)
1 parent 44a109d commit 04e9c17

File tree

3 files changed

+14
-26
lines changed

3 files changed

+14
-26
lines changed

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @jenkinsci/kubernetes-credentials-plugin-developers

.mvn/extensions.xml

+1-1
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.0-beta-7</version>
5+
<version>1.8</version>
66
</extension>
77
</extensions>

pom.xml

+12-25
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<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">
23
<modelVersion>4.0.0</modelVersion>
34
<parent>
45
<groupId>org.jenkins-ci.plugins</groupId>
56
<artifactId>plugin</artifactId>
6-
<version>4.74</version>
7+
<version>4.82</version>
8+
<relativePath />
79
</parent>
810

911
<groupId>org.jenkinsci.plugins</groupId>
1012
<artifactId>kubernetes-credentials</artifactId>
1113
<version>${changelist}</version>
1214
<name>Kubernetes Credentials Plugin</name>
13-
<url>https://github.com/jenkinsci/kubernetes-credentials-plugin/</url>
15+
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
1416
<packaging>hpi</packaging>
1517

1618
<scm>
17-
<connection>scm:git:https://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
18-
<developerConnection>scm:git:ssh://[email protected]/jenkinsci/${project.artifactId}-plugin.git</developerConnection>
19-
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
20-
<tag>kubernetes-credentials-0.11</tag>
19+
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
20+
<developerConnection>scm:git:[email protected]:${gitHubRepo}.git</developerConnection>
21+
<url>https://github.com/${gitHubRepo}</url>
22+
<tag>${scmTag}</tag>
2123
</scm>
2224

2325
<licenses>
@@ -37,21 +39,15 @@
3739

3840
<properties>
3941
<changelist>999999-SNAPSHOT</changelist>
42+
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
4043

4144
<!-- jenkins versions -->
42-
<jenkins.version>2.401.1</jenkins.version>
45+
<jenkins.version>2.401.3</jenkins.version>
4346
<bom.artifactId>bom-2.401.x</bom.artifactId>
44-
<bom.version>2244.vd60654536b_96</bom.version>
45-
46-
<!-- dependency versions -->
47-
<authentication-tokens.version>1.53.v1c90fd9191a_b_</authentication-tokens.version>
48-
<docker-commons.version>439.va_3cb_0a_6a_fb_29</docker-commons.version>
49-
<google-oauth-plugin.version>1.0.9</google-oauth-plugin.version>
50-
<kubernetes-client-api.version>6.8.1-224.vd388fca_4db_3b_</kubernetes-client-api.version>
47+
<bom.version>2745.vc7b_fe4c876fa_</bom.version>
5148

5249
<!-- maven plugins versions -->
5350
<maven-coveralls.version>4.3.0</maven-coveralls.version>
54-
<maven-jacoco.version>0.8.10</maven-jacoco.version>
5551

5652
<spotbugs.effort>Max</spotbugs.effort>
5753
<spotbugs.threshold>Low</spotbugs.threshold>
@@ -61,7 +57,6 @@
6157
<dependency>
6258
<groupId>org.jenkins-ci.plugins</groupId>
6359
<artifactId>kubernetes-client-api</artifactId>
64-
<version>${kubernetes-client-api.version}</version>
6560
</dependency>
6661
<dependency>
6762
<groupId>org.jenkins-ci.plugins</groupId>
@@ -81,7 +76,6 @@
8176
<dependency>
8277
<groupId>org.jenkins-ci.plugins</groupId>
8378
<artifactId>authentication-tokens</artifactId>
84-
<version>${authentication-tokens.version}</version>
8579
</dependency>
8680

8781
<!-- optional plugins -->
@@ -94,13 +88,11 @@
9488
<dependency>
9589
<groupId>org.jenkins-ci.plugins</groupId>
9690
<artifactId>google-oauth-plugin</artifactId>
97-
<version>${google-oauth-plugin.version}</version>
9891
<optional>true</optional>
9992
</dependency>
10093
<dependency>
10194
<groupId>org.jenkins-ci.plugins</groupId>
10295
<artifactId>docker-commons</artifactId>
103-
<version>${docker-commons.version}</version>
10496
<optional>true</optional>
10597
</dependency>
10698
<dependency>
@@ -126,11 +118,6 @@
126118
<scope>import</scope>
127119
<type>pom</type>
128120
</dependency>
129-
<dependency>
130-
<groupId>io.jenkins.plugins</groupId>
131-
<artifactId>okhttp-api</artifactId>
132-
<version>4.11.0-157.v6852a_a_fa_ec11</version>
133-
</dependency>
134121
</dependencies>
135122
</dependencyManagement>
136123

@@ -145,7 +132,7 @@
145132
<plugin>
146133
<groupId>org.jacoco</groupId>
147134
<artifactId>jacoco-maven-plugin</artifactId>
148-
<version>${maven-jacoco.version}</version>
135+
<version>${jacoco-maven-plugin.version}</version>
149136
<executions>
150137
<execution>
151138
<id>prepare-agent</id>

0 commit comments

Comments
 (0)