Skip to content
This repository was archived by the owner on Dec 17, 2024. It is now read-only.

Commit 0df8082

Browse files
committed
upgrade to commons lang 3.1
1 parent 9708dc7 commit 0df8082

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,9 +345,9 @@
345345
<scope>test</scope>
346346
</dependency>
347347
<dependency>
348-
<groupId>commons-lang</groupId>
349-
<artifactId>commons-lang</artifactId>
350-
<version>2.6</version>
348+
<groupId>org.apache.commons</groupId>
349+
<artifactId>commons-lang3</artifactId>
350+
<version>3.1</version>
351351
<scope>test</scope>
352352
</dependency>
353353
<dependency>

src/test/java/com/davidkarlsen/commonstransaction/spring/CommonsTransactionPlatformTransactionManagerIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import junit.framework.Assert;
77

88
import org.apache.commons.io.FileUtils;
9-
import org.apache.commons.lang.SystemUtils;
9+
import org.apache.commons.lang3.SystemUtils;
1010
import org.apache.commons.transaction.file.ResourceManagerException;
1111
import org.junit.Before;
1212
import org.junit.Test;

src/test/java/com/davidkarlsen/commonstransaction/spring/CommonsTransactionPlatformTransactionManagerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.io.File;
44

55
import org.apache.commons.io.FileUtils;
6-
import org.apache.commons.lang.SystemUtils;
6+
import org.apache.commons.lang3.SystemUtils;
77
import org.apache.commons.transaction.file.FileResourceManager;
88
import org.apache.commons.transaction.file.ResourceManagerException;
99
import org.apache.commons.transaction.file.ResourceManagerSystemException;

0 commit comments

Comments
 (0)