Ads
Ads
In this section developers will find the maven dependency for org.apache.commons, commons-lang3 version 3.12.0.. Learn to use commons-lang3 version 3.12.0 dependency with Maven, Gradle, SBT, Ivy, Grape, Leiningen and Buildr build tools.
In this section we will see the dependency code that can be added to Maven, Gradle, SBT, Ivy, Grape, Leiningen and Buildr based project in order to get commons-lang3 version 3.12.0 dependency in the project.
The commons-lang3 version 3.12.0 is released on DATE and its available on the remote repositories such as maven central repositories, which can be used used by developer in their projects. They just have to add the dependency code of commons-lang3 version 3.12.0 given here.
Java project using maven can easily download commons-lang3 version 3.12.0 dependency in your project once you add this dependency in your project. You can add following code in your pom.xml file to get commons-lang3 version 3.12.0 version maven dependency in your project.
<dependency> <groupId>commons-lang3</groupId> <artifactId>commons-lang3</artifactId> <version>3.12.0</version> </dependency>
Above dependency code will download the necessary jar files along with all the dependent packages if any from the remote repositions in your project and you will be able to use the commons-lang3 version 3.12.0 in your project. Maven makes it very easy to quickly download commons-lang3 dependency packages of specified version e.g. version 3.12.0 in this case.
Maven comes with the handy command for finding the dependent libraries in maven based Java projects and this will help us in getting the dependencies tree of commons-lang3 version 3.12.0. To check the dependency of commons-lang3 version 3.12.0 you can run following maven command into your project:
mvn dependency:tree
Above command gives the list of all the dependent libraries. In case of commons-lang3 version 3.12.0 following is the dependency tree:
DEPENDENCY TREE
Here is the screen shot of the command:
IMAGE_DEPENDENCY TREE
The commons-lang3 can also be used with the other build tools such as Gradle, SBT, Ivy, Grape, Leiningen and Buildr. Let's see the dependency code to be added in the project using these build tools.
Here is the Gradle dependency for commons-lang3 version 3.12.0:
implementation group: 'commons-lang3', name: 'commons-lang3', version: '3.12.0'
Here is the SBT dependency for commons-lang3 version 3.12.0:
libraryDependencies += "commons-lang3" % "commons-lang3" % "3.12.0"
Here is the Ivy dependency for commons-lang3 version 3.12.0:
<dependency org="commons-lang3" name="commons-lang3" rev="3.12.0"/>
Here is the Gradle dependency for commons-lang3 version 3.12.0:
@Grapes( @Grab(group='commons-lang3', module='commons-lang3', version='3.12.0') )
Here is the Leiningen dependency for commons-lang3 version 3.12.0:
[commons-lang3/commons-lang3 "3.12.0"]
Here is the Buildr dependency for commons-lang3 version 3.12.0:
'commons-lang3:commons-lang3:jar:3.12.0'
In this section we have explored commons-lang3 version 3.12.0 dependency and learned how to use this dependency in Java projects.