diff --git a/pom.xml b/pom.xml
index d87025f..31cb6cd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
org.jenkins-ci.plugins
plugin
- 4.31
+ 4.40
@@ -14,8 +14,8 @@
https://github.com/jenkinsci/${project.artifactId}-plugin
- scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git
- scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git
+ scm:git:https://github.com/${gitHubRepo}.git
+ scm:git:git@github.com:${gitHubRepo}.git
https://github.com/jenkinsci/${project.artifactId}-plugin
${scmTag}
@@ -23,19 +23,23 @@
1.14
-SNAPSHOT
- 2.249.3
- 8
+ 2.289.3
io.jenkins.tools.bom
- bom-2.249.x
- 961.vf0c9f6f59827
+ bom-2.289.x
+ 1289.v5c4b_1c43511b_
import
pom
+
+ org.apache.commons
+ commons-lang3
+ 3.12.0
+
diff --git a/src/main/java/hudson/tasks/AntWrapper.java b/src/main/java/hudson/tasks/AntWrapper.java
index 379d84b..1abc058 100644
--- a/src/main/java/hudson/tasks/AntWrapper.java
+++ b/src/main/java/hudson/tasks/AntWrapper.java
@@ -43,7 +43,7 @@
import hudson.tools.ToolInstallation;
import java.io.IOException;
import java.util.Map;
-import javax.annotation.Nonnull;
+import edu.umd.cs.findbugs.annotations.NonNull;
import jenkins.model.Jenkins;
import jenkins.tasks.SimpleBuildWrapper;
import org.jenkinsci.Symbol;
@@ -87,7 +87,7 @@ public void setUp(Context context, Run, ?> build, FilePath workspace, Launcher
}
// TODO this is pretty generic and could perhaps be added to SimpleBuildWrapper?
- private static void toolEnv(Context context, @Nonnull String tool, ToolInstallation[] tools, FilePath workspace, TaskListener listener, EnvVars initialEnvironment) throws IOException, InterruptedException {
+ private static void toolEnv(Context context, @NonNull String tool, ToolInstallation[] tools, FilePath workspace, TaskListener listener, EnvVars initialEnvironment) throws IOException, InterruptedException {
ToolInstallation inst = null;
for (ToolInstallation _inst : tools) {
if (_inst.getName().equals(tool)) {
diff --git a/src/test/java/hudson/tasks/_ant/AntTargetAnnotationTest.java b/src/test/java/hudson/tasks/_ant/AntTargetAnnotationTest.java
index 3869d2a..4c0c6e7 100644
--- a/src/test/java/hudson/tasks/_ant/AntTargetAnnotationTest.java
+++ b/src/test/java/hudson/tasks/_ant/AntTargetAnnotationTest.java
@@ -41,7 +41,7 @@ public void test1() throws Exception {
AntTargetNote.ENABLED = true;
WebClient wc = r.createWebClient();
HtmlPage c = wc.getPage(b, "console");
- System.out.println(c.asText());
+ System.out.println(c.asNormalizedText());
DomElement o = c.getElementById("console-outline");
assertEquals(2,o.getByXPath(".//LI").size());