Skip to content

Commit

Permalink
Merge pull request #1 from Ecwid/commons-lang-3
Browse files Browse the repository at this point in the history
migrate to apache commons lang 3
  • Loading branch information
ChesterEcwid authored Jul 26, 2023
2 parents d773cc3 + 3500830 commit 833e361
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<properties>
<project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
<junit.version>4.12</junit.version>
<commons.lang.version>2.6</commons.lang.version>
<commons.lang.version>3.12.0</commons.lang.version>
</properties>

<developers>
Expand Down Expand Up @@ -179,8 +179,8 @@
<dependencies>
<!-- [lang] -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons.lang.version}</version>
</dependency>
<!-- testing -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import java.util.Arrays;
import java.util.List;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;

/**
* <p>A parser capable of parsing name parts out of a single string.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import java.io.IOException;
import java.util.logging.Logger;

import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;
import org.junit.BeforeClass;
import org.junit.Test;

Expand Down

0 comments on commit 833e361

Please sign in to comment.