Skip to content

Commit

Permalink
Refresh plugin for August 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
basil committed Aug 17, 2023
1 parent 26db2ff commit 2855bb9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .mvn/extensions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<extension>
<groupId>io.jenkins.tools.incrementals</groupId>
<artifactId>git-changelist-maven-extension</artifactId>
<version>1.1</version>
<version>1.7</version>
</extension>
</extensions>
5 changes: 4 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#!/usr/bin/env groovy

/* `buildPlugin` step provided by: https://github.com/jenkins-infra/pipeline-library */
buildPlugin()
buildPlugin(useContainerAgent: true, configurations: [
[platform: 'linux', jdk: 11],
[platform: 'windows', jdk: 17],
])
21 changes: 10 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.31</version>
<version>4.72</version>
</parent>

<artifactId>vsphere-cloud</artifactId>
Expand All @@ -14,7 +14,7 @@

<name>vSphere Plugin</name>
<description>Integrates Jenkins with a vSphere server</description>
<url>https://github.com/jenkinsci/vsphere-cloud-plugin</url>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
<licenses>
<license>
<name>Apache Software License, Version 2.0</name>
Expand Down Expand Up @@ -51,26 +51,26 @@
</developers>

<scm>
<connection>scm:git:git://github.com/jenkinsci/vsphere-cloud-plugin.git</connection>
<developerConnection>scm:git:ssh://git@github.com/jenkinsci/vsphere-cloud-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/vsphere-cloud-plugin</url>
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
<developerConnection>scm:git:git@github.com:${gitHubRepo}.git</developerConnection>
<url>https://github.com/${gitHubRepo}</url>
<tag>${scmTag}</tag>
</scm>

<properties>
<revision>2.28</revision>
<changelist>-SNAPSHOT</changelist>
<java.level>8</java.level>
<jenkins.version>2.263.1</jenkins.version>
<jenkins.version>2.387.3</jenkins.version>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<spotbugs.skip>true</spotbugs.skip>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.263.x</artifactId>
<version>984.vb5eaac999a7e</version>
<artifactId>bom-2.387.x</artifactId>
<version>2329.v078520e55c19</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down Expand Up @@ -114,7 +114,7 @@
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>node-iterator-api</artifactId>
<version>1.5</version>
<version>49.v58a_8b_35f8363</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
Expand All @@ -127,7 +127,6 @@
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>jaxb</artifactId>
<version>2.3.6-1</version>
</dependency>
<dependency>
<groupId>io.jenkins</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
labelString: "windows vsphere"
launchDelay: 60
launcher:
jnlp:
inbound:
tunnel: "jenkins:"
limitedRunCount: 1
linkedClone: true
Expand Down

0 comments on commit 2855bb9

Please sign in to comment.