From f0bee8e806600e17382c3e296b622031b59ded6d Mon Sep 17 00:00:00 2001 From: Tim Jacomb Date: Sun, 4 Jun 2023 23:37:34 +0100 Subject: [PATCH] Upgrade HtmlUnit from 2.x to 3.x --- pom.xml | 2 +- src/test/java/hudson/plugins/powershell/PowerShellTest.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 9afa3aa..5ba94d4 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ org.jenkins-ci.plugins plugin - 4.53 + 4.66 powershell diff --git a/src/test/java/hudson/plugins/powershell/PowerShellTest.java b/src/test/java/hudson/plugins/powershell/PowerShellTest.java index fc6e63b..77b22fe 100644 --- a/src/test/java/hudson/plugins/powershell/PowerShellTest.java +++ b/src/test/java/hudson/plugins/powershell/PowerShellTest.java @@ -6,8 +6,8 @@ import java.util.regex.Pattern; import java.util.stream.Stream; -import com.gargoylesoftware.htmlunit.html.HtmlForm; -import com.gargoylesoftware.htmlunit.html.HtmlPage; +import org.htmlunit.html.HtmlForm; +import org.htmlunit.html.HtmlPage; import hudson.model.FreeStyleBuild; import hudson.model.FreeStyleProject; import hudson.model.Result;