Move Commons Lang to the libraries module (#1311)

* Introduction to Apache Commons Lang 3

* Move Commons Lang to the libraries module

* Update pom.xml

* Update pom.xml
This commit is contained in:
nguyennamthai
2017-03-07 06:19:27 +07:00
committed by Zeger Hendrikse
parent 22842a0e71
commit f57af2b200
4 changed files with 11 additions and 41 deletions
+11 -5
View File
@@ -32,9 +32,9 @@
<version>${cglib.version}</version>
</dependency>
<dependency>
<groupId>org.jasypt</groupId>
<artifactId>jasypt</artifactId>
<version>${jasypt.version}</version>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
@@ -42,13 +42,19 @@
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jasypt</groupId>
<artifactId>jasypt</artifactId>
<version>${jasypt.version}</version>
</dependency>
</dependencies>
<properties>
<cglib.version>3.2.4</cglib.version>
<commons-lang.version>3.5</commons-lang.version>
<junit.version>4.12</junit.version>
<jasypt.version>1.9.2</jasypt.version>
</properties>
</project>
</project>