Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Java versions to test against
String[] unitTestJdkVersions = [17, 21]
String integrationJdkVersions = 17
String[] unitTestJdkVersions = [21, 25]
String integrationJdkVersions = 21

// Platform to test for
String[] platforms = [
Expand Down
23 changes: 4 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>5.7</version>
<version>5.28</version>
<relativePath />
</parent>

Expand All @@ -21,10 +21,7 @@

<!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ -->
<jenkins.baseline>2.479</jenkins.baseline>
<jenkins.version>${jenkins.baseline}.1</jenkins.version>

<!-- jenkins plugins versions -->
<jenkins-env-inject.version>2.3.0</jenkins-env-inject.version>
<jenkins.version>${jenkins.baseline}.3</jenkins.version>

<!-- maven plugins versions -->
<maven-coveralls.version>4.3.0</maven-coveralls.version>
Expand All @@ -42,7 +39,7 @@

<scm>
<connection>scm:git:https://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com/jenkinsci/${project.artifactId}-plugin.git</developerConnection>
<developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
<tag>${scmTag}</tag>
</scm>
Expand All @@ -67,21 +64,10 @@
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-${jenkins.baseline}.x</artifactId>
<version>3893.v213a_42768d35</version>
<version>5054.v620b_5d2b_d5e6</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>authentication-tokens</artifactId>
<version>1.119.v50285141b_7e1</version>
</dependency>
<!-- required to enforce dependency version -->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>kubernetes-client-api</artifactId>
<version>6.10.0-240.v57880ce8b_0b_2</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -142,7 +128,6 @@
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>envinject</artifactId>
<version>${jenkins-env-inject.version}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Loading