Skip to content

Commit 88f0363

Browse files
authored
Migrate Commons Lang from 2 to 3 and StringEscapeUtils to Commons Text (#184)
Co-authored-by: Bruno Verachten <gounthar@users.noreply.github.com>
1 parent 4d48d10 commit 88f0363

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@
6666
</dependencyManagement>
6767

6868
<dependencies>
69+
<dependency>
70+
<groupId>io.jenkins.plugins</groupId>
71+
<artifactId>commons-lang3-api</artifactId>
72+
</dependency>
6973
<dependency>
7074
<groupId>org.jenkins-ci.plugins.workflow</groupId>
7175
<artifactId>workflow-job</artifactId>

src/main/java/org/jenkinsci/plugins/workflow/pipelinegraphanalysis/StatusAndTiming.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
3030
import hudson.model.Action;
3131
import hudson.model.Result;
32-
import org.apache.commons.lang.StringUtils;
32+
import org.apache.commons.lang3.StringUtils;
3333
import org.jenkinsci.plugins.workflow.actions.ErrorAction;
3434
import org.jenkinsci.plugins.workflow.actions.NotExecutedNodeAction;
3535
import org.jenkinsci.plugins.workflow.actions.QueueItemAction;

src/test/java/org/jenkinsci/plugins/workflow/pipelinegraphanalysis/StatusAndTimingTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import hudson.model.Result;
3030
import hudson.model.queue.QueueTaskFuture;
3131
import hudson.slaves.DumbSlave;
32-
import org.apache.commons.lang.SystemUtils;
32+
import org.apache.commons.lang3.SystemUtils;
3333
import org.jenkinsci.plugins.workflow.actions.LabelAction;
3434
import org.jenkinsci.plugins.workflow.actions.QueueItemAction;
3535
import org.jenkinsci.plugins.workflow.actions.ThreadNameAction;

0 commit comments

Comments
 (0)