Skip to content

Commit d6f3959

Browse files
committed
1 parent 94d2e9e commit d6f3959

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

Jenkinsfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
#!/usr/bin/env groovy
22

33
/* `buildPlugin` step provided by: https://github.com/jenkins-infra/pipeline-library */
4-
buildPlugin()
4+
buildPlugin(
5+
useContainerAgent: false,
6+
configurations: [
7+
[platform: 'linux', jdk: 17],
8+
[platform: 'windows', jdk: 11],
9+
]
10+
)

pom.xml

Lines changed: 4 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.51</version>
6+
<version>4.53</version>
77
</parent>
88

99
<artifactId>powershell</artifactId>
@@ -34,12 +34,13 @@
3434
<scm>
3535
<connection>scm:git:https://github.com/jenkinsci/powershell-plugin.git</connection>
3636
<developerConnection>scm:git:git@github.com:jenkinsci/powershell-plugin.git</developerConnection>
37-
<url>http://github.com/jenkinsci/powershell-plugin</url>
37+
<url>https://github.com/jenkinsci/powershell-plugin</url>
3838
<tag>HEAD</tag>
3939
</scm>
4040

4141
<properties>
42-
<java.level>8</java.level>
42+
<java.level>11</java.level>
43+
<jenkins.version>2.361.4</jenkins.version>
4344
</properties>
4445

4546
<repositories>

0 commit comments

Comments
 (0)