Skip to content

Commit

Permalink
Require Jenkins 2.426.3 and latest parent pom (#18)
Browse files Browse the repository at this point in the history
Also updates several items in the pom
  • Loading branch information
MarkEWaite authored Jun 29, 2024
1 parent bddc743 commit 2f6a9b1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
10 changes: 7 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
/*
See the documentation for more options:
https://github.com/jenkins-infra/pipeline-library/
*/
buildPlugin(
useContainerAgent: true,
useContainerAgent: true, // Set to `false` if you need to use Docker for containerized tests
configurations: [
[platform: 'linux', jdk: 8],
[platform: 'windows', jdk: 8],
[platform: 'linux', jdk: 21],
[platform: 'windows', jdk: 17],
])
14 changes: 4 additions & 10 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>4.76</version>
<version>4.83</version>
</parent>

<artifactId>label-verifier</artifactId>
Expand All @@ -14,8 +14,7 @@
<url>https://github.com/jenkinsci/label-verifier-plugin</url>

<properties>
<jenkins.version>2.414.3</jenkins.version>
<java.level>8</java.level>
<jenkins.version>2.426.3</jenkins.version>
</properties>

<licenses>
Expand All @@ -41,8 +40,8 @@
</developers>

<scm>
<connection>scm:git:ssh://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
<developerConnection>scm:git:ssh://[email protected]/jenkinsci/${project.artifactId}-plugin.git</developerConnection>
<connection>scm:git:https://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
<developerConnection>scm:git:[email protected]:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
<tag>HEAD</tag>
</scm>
Expand All @@ -61,8 +60,3 @@
</pluginRepository>
</pluginRepositories>
</project>





0 comments on commit 2f6a9b1

Please sign in to comment.