Skip to content

Commit

Permalink
Modernize plugin (#176)
Browse files Browse the repository at this point in the history
* Modernize plugin

* More updates
  • Loading branch information
basil committed Aug 3, 2023
1 parent 67cb3cf commit e4497bc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 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.4</version>
<version>1.6</version>
</extension>
</extensions>
8 changes: 4 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
buildPlugin(configurations: [
[platform: 'linux', jdk: '8'],
[platform: 'windows', jdk: '8']
], useContainerAgent: true)
buildPlugin(useContainerAgent: true, configurations: [
[platform: 'linux', jdk: 17],
[platform: 'windows', jdk: 11],
])
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.47</version>
<version>4.71</version>
<relativePath />
</parent>

Expand Down Expand Up @@ -71,7 +71,7 @@

<properties>
<changelist>999999-SNAPSHOT</changelist>
<jenkins.version>2.346.1</jenkins.version>
<jenkins.version>2.387.3</jenkins.version>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
</properties>

Expand All @@ -92,8 +92,8 @@
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.346.x</artifactId>
<version>1607.va_c1576527071</version>
<artifactId>bom-2.387.x</artifactId>
<version>2278.v47b_4508e256a</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down

0 comments on commit e4497bc

Please sign in to comment.