Maven Repository - POM file for Data Structure commons-lang 2.0 2.0

Summary

Lang.

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..

Declaration

Here is the list of declaration for commons-lang. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>commons-lang</groupId>
   <artifactId>commons-lang</artifactId>
   <version>2.0</version>
</dependency>

If you think this Maven repository POM file listing for commons-lang is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





Depends on

The commons-lang-2.0 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
JUnitjunit 3.7
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
21

Depended by

The following table lists the most popular artifacts which are depending on commons-lang-2.0. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
JSPextremecomponents 1.0.1
eXtremeComponents is a jsp dynamically generated table.
29
Databasejackcess 1.2.4
A pure Java library for reading from and writing to MS Access databases.
6
Developmenteasyconf 0.9.5
EasyConf is a library to access configuration of software components and applications. It defines simple conventions to make it easier to use. It was born in a portlets-based portal and has several features useful for this and similar environments.
12
XMLcommons-jelly 1.0
Jelly is a Java and XML based scripting engine. Jelly combines the best ideas from JSTL, Velocity, DVSL, Ant and Cocoon all together in a simple yet powerful scripting engine.
53
XMLstruts 1.2.4
The core of the Struts framework is a flexible control layer based on standard technologies like Java Servlets, JavaBeans, ResourceBundles, and Extensible Markup Language (XML), as well as various Jakarta Commons packages. Struts encourages application architectures based on the Model 2 approach, a...
12
Libraryashwood 1.1
Ashwood Graph Library
7

Plugin

The following plugins are used in the commons-lang-2.0.jar

  1. maven-surefire-plugin




Packages

The following packages are defined in the commons-lang-2.0.jar

org.apache.commons.lang
org.apache.commons.lang.builder
org.apache.commons.lang.enum
org.apache.commons.lang.exception
org.apache.commons.lang.math
org.apache.commons.lang.time

POM File Source

Here is the content of the POM file.

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>commons-lang</groupId>
  <artifactId>commons-lang</artifactId>
  <name>Lang</name>
  <version>2.0</version>
  <description>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.</description>
  <inceptionYear>2001</inceptionYear>
  
  <contributors>
    <contributor>
      <name>Ringo De Smet</name>
      <email>ringods@yahoo.co.uk</email>
      <organization></organization>
      <roles>
        <role>Java Developer</role>
      </roles>
    </contributor>
    <contributor>
      <name>Steve Downey</name>
      <email>steve.downey@netfolio.com</email>
      <organization></organization>
      <roles>
        <role>Java Developer</role>
      </roles>
    </contributor>
  </contributors>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <includes>
            <include>**/*Test.java</include>
            <include>**/*TestCase.java</include>
          </includes>
          <excludes>
            <exclude>**/Abstract*.java</exclude>
            <exclude>**/*CalendarUtils*.java</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.7</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>