This page gives you a quick reference to get Apache Commons Lang dependency for Maven or Gradle projects. You can also download the Apache Commons Lang jar dependency, the link given at the "Download JAR File" section.
Apache Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang.
Apache Commons Lang Maven Dependency
Copy below Apache Commons Lang maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.9</version>
</dependency>
Apache Commons Lang Gradle Dependency
Copy below Apache Commons Lang Gradle dependency and paste in your project build.gradle file:
// https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
compile group: 'org.apache.commons', name: 'commons-lan
Comments
Post a Comment