First use one of Apache.
Secondly, you have two options: branches 2.x or 3.x; from mvnrepository.com search:
2.6
<dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.6</version> </dependency>
3.1
<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.1</version> </dependency>
If you are using Maven, you should not have "only jar", you should only know about POM dependencies.
(As of February 2014, it is up to 3.3.2, the 2.x series is still 2.6. Please note that you can use both applications in the same application because of their different packages.)
source share