Skip to content

Commit d5c06f0

Browse files
authored
Merge pull request #1385 from jenkinsci/dependabot/maven/org.jenkins-ci.plugins-plugin-4.66
Bump plugin from 4.64 to 4.66, update to 2.387.x
2 parents d7b82db + 76d0b08 commit d5c06f0

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

pom.xml

Lines changed: 4 additions & 4 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.64</version>
6+
<version>4.66</version>
77
<relativePath/>
88
</parent>
99

@@ -45,7 +45,7 @@
4545
<connectorHost />
4646
<jenkins.host.address />
4747
<slaveAgentPort />
48-
<jenkins.version>2.361.4</jenkins.version>
48+
<jenkins.version>2.387.3</jenkins.version>
4949
<no-test-jar>false</no-test-jar>
5050
<useBeta>true</useBeta>
5151
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
@@ -251,8 +251,8 @@
251251
<dependencies>
252252
<dependency>
253253
<groupId>io.jenkins.tools.bom</groupId>
254-
<artifactId>bom-2.361.x</artifactId>
255-
<version>1836.vfe602c266c05</version>
254+
<artifactId>bom-2.387.x</artifactId>
255+
<version>2163.v2d916d90c305</version>
256256
<scope>import</scope>
257257
<type>pom</type>
258258
</dependency>

src/test/java/org/csanchez/jenkins/plugins/kubernetes/KubernetesCloudTest.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
import java.util.logging.Level;
1515
import java.util.logging.Logger;
1616

17-
import com.gargoylesoftware.htmlunit.ElementNotFoundException;
18-
import com.gargoylesoftware.htmlunit.html.DomElement;
19-
import com.gargoylesoftware.htmlunit.html.DomNodeList;
20-
import com.gargoylesoftware.htmlunit.html.HtmlButton;
21-
import com.gargoylesoftware.htmlunit.html.HtmlElement;
22-
import com.gargoylesoftware.htmlunit.html.HtmlForm;
23-
import com.gargoylesoftware.htmlunit.html.HtmlFormUtil;
24-
import com.gargoylesoftware.htmlunit.html.HtmlInput;
25-
import com.gargoylesoftware.htmlunit.html.HtmlPage;
17+
import org.htmlunit.ElementNotFoundException;
18+
import org.htmlunit.html.DomElement;
19+
import org.htmlunit.html.DomNodeList;
20+
import org.htmlunit.html.HtmlButton;
21+
import org.htmlunit.html.HtmlElement;
22+
import org.htmlunit.html.HtmlForm;
23+
import org.htmlunit.html.HtmlFormUtil;
24+
import org.htmlunit.html.HtmlInput;
25+
import org.htmlunit.html.HtmlPage;
2626
import org.apache.commons.beanutils.PropertyUtils;
2727
import org.apache.commons.lang3.RandomStringUtils;
2828
import org.apache.commons.lang3.RandomUtils;
@@ -266,7 +266,7 @@ public void defaultWorkspaceVolume() throws Exception {
266266
buttonDetails.click();
267267
DomElement templates = p.getElementByName("templates");
268268
HtmlInput templateName = getInputByName(templates, "_.name");
269-
templateName.setValueAttribute("default-workspace-volume");
269+
templateName.setValue("default-workspace-volume");
270270
j.submit(f);
271271
cloud = j.jenkins.clouds.get(KubernetesCloud.class);
272272
PodTemplate podTemplate = cloud.getTemplates().get(0);

src/test/java/org/csanchez/jenkins/plugins/kubernetes/pipeline/KubernetesPipelineTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
import java.util.logging.Logger;
5353

5454
import hudson.model.Computer;
55-
import com.gargoylesoftware.htmlunit.html.DomNodeUtil;
56-
import com.gargoylesoftware.htmlunit.html.HtmlElement;
57-
import com.gargoylesoftware.htmlunit.html.HtmlPage;
55+
import org.htmlunit.html.DomNodeUtil;
56+
import org.htmlunit.html.HtmlElement;
57+
import org.htmlunit.html.HtmlPage;
5858
import hudson.model.Label;
5959
import hudson.model.Run;
6060
import hudson.slaves.SlaveComputer;

0 commit comments

Comments
 (0)