Skip to content

Commit fb27d12

Browse files
authored
Merge pull request #27 from jenkinsci/support-jdk-21
Support building on Java 21
2 parents 474b4cf + 00f141e commit fb27d12

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
buildPlugin(
55
useContainerAgent: false,
66
configurations: [
7-
[platform: 'linux', jdk: 17],
8-
[platform: 'windows', jdk: 11],
7+
[platform: 'linux', jdk: 21],
8+
[platform: 'windows', jdk: 17],
99
]
10-
)
10+
)

pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>org.jenkins-ci.plugins</groupId>
55
<artifactId>plugin</artifactId>
6-
<version>4.66</version>
6+
<version>4.73</version>
77
</parent>
88

99
<artifactId>powershell</artifactId>
@@ -39,7 +39,6 @@
3939
</scm>
4040

4141
<properties>
42-
<java.level>11</java.level>
4342
<jenkins.version>2.361.4</jenkins.version>
4443
</properties>
4544

@@ -56,4 +55,4 @@
5655
<url>https://repo.jenkins-ci.org/public/</url>
5756
</pluginRepository>
5857
</pluginRepositories>
59-
</project>
58+
</project>

0 commit comments

Comments
 (0)