Skip to content

Commit 26092b6

Browse files
authored
Merge pull request #297 from basil/refresh
Refresh plugin for June 2023
2 parents d5d2e5c + 38b9982 commit 26092b6

File tree

4 files changed

+13
-25
lines changed

4 files changed

+13
-25
lines changed

.mvn/extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<extension>
33
<groupId>io.jenkins.tools.incrementals</groupId>
44
<artifactId>git-changelist-maven-extension</artifactId>
5-
<version>1.4</version>
5+
<version>1.6</version>
66
</extension>
77
</extensions>

Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
buildPlugin(platforms: [
2-
'linux',
3-
'maven-windows' // TODO Docker-based tests fail when using Docker on Windows. The maven-windows agents do not have Docker installed so tests that require Docker are skipped.
1+
buildPlugin(useContainerAgent: false, configurations: [
2+
[platform: 'linux', jdk: 17],
3+
[platform: 'maven-11-windows', jdk: 11] // TODO Docker-based tests fail when using Docker on Windows. The maven-windows agents do not have Docker installed so tests that require Docker are skipped.
44
])

pom.xml

Lines changed: 5 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.jenkins-ci.plugins</groupId>
66
<artifactId>plugin</artifactId>
7-
<version>4.51</version>
7+
<version>4.67</version>
88
<relativePath />
99
</parent>
1010
<artifactId>docker-workflow</artifactId>
@@ -30,7 +30,7 @@
3030

3131
<properties>
3232
<changelist>999999-SNAPSHOT</changelist>
33-
<jenkins.version>2.332.1</jenkins.version>
33+
<jenkins.version>2.361.4</jenkins.version>
3434
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
3535
</properties>
3636
<repositories>
@@ -49,30 +49,18 @@
4949
<dependencies>
5050
<dependency>
5151
<groupId>io.jenkins.tools.bom</groupId>
52-
<artifactId>bom-2.332.x</artifactId>
53-
<version>1643.v1cffef51df73</version>
52+
<artifactId>bom-2.361.x</artifactId>
53+
<version>2102.v854b_fec19c92</version>
5454
<scope>import</scope>
5555
<type>pom</type>
5656
</dependency>
57-
<dependency>
58-
<groupId>org.jenkinsci.plugins</groupId>
59-
<artifactId>pipeline-model-api</artifactId>
60-
</dependency>
61-
<dependency>
62-
<groupId>org.jenkinsci.plugins</groupId>
63-
<artifactId>pipeline-model-extensions</artifactId>
64-
</dependency>
65-
<dependency>
66-
<groupId>org.jenkinsci.plugins</groupId>
67-
<artifactId>pipeline-stage-tags-metadata</artifactId>
68-
</dependency>
6957
</dependencies>
7058
</dependencyManagement>
7159
<dependencies>
7260
<dependency>
7361
<groupId>org.jenkins-ci.plugins</groupId>
7462
<artifactId>docker-commons</artifactId>
75-
<version>1.21</version>
63+
<version>419.v8e3cd84ef49c</version>
7664
</dependency>
7765
<dependency>
7866
<groupId>org.jenkins-ci.plugins.workflow</groupId>

src/test/java/org/jenkinsci/plugins/docker/workflow/declarative/DockerDirectiveGeneratorTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424

2525
package org.jenkinsci.plugins.docker.workflow.declarative;
2626

27-
import com.gargoylesoftware.htmlunit.HttpMethod;
28-
import com.gargoylesoftware.htmlunit.WebRequest;
29-
import com.gargoylesoftware.htmlunit.WebResponse;
30-
import com.gargoylesoftware.htmlunit.util.NameValuePair;
27+
import org.htmlunit.HttpMethod;
28+
import org.htmlunit.WebRequest;
29+
import org.htmlunit.WebResponse;
30+
import org.htmlunit.util.NameValuePair;
3131
import edu.umd.cs.findbugs.annotations.NonNull;
3232
import hudson.model.Describable;
3333
import java.net.URL;

0 commit comments

Comments
 (0)