Maven Repository - POM file for Data Structure commons-beanutils 1.6 1.6

Summary

BeanUtils.

Java Bean Utililities.

Declaration

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

<dependency>
   <groupId>commons-beanutils</groupId>
   <artifactId>commons-beanutils</artifactId>
   <version>1.6</version>
</dependency>

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

Depends on

The commons-beanutils-1.6 has 3 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-beanutils-1.6. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
XMLcommons-digester 1.5
The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized.
8
XMLcommons-digester 1.7
The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized.
182
XMLcommons-digester 1.4.1
The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized.
31
XMLcommons-jelly-tags-xml 1.1
The Jelly XML Tag Library
154
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

Plugin

The following plugins are used in the commons-beanutils-1.6.jar

  1. maven-surefire-plugin

Packages

The following packages are defined in the commons-beanutils-1.6.jar

org.apache.commons.beanutils
org.apache.commons.beanutils.converters
org.apache.commons.beanutils.locale
org.apache.commons.beanutils.locale.converters




POM File Source

Here is the content of the POM file.

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>commons-beanutils</groupId>
  <artifactId>commons-beanutils</artifactId>
  <name>BeanUtils</name>
  <version>1.6</version>
  <description>Java Bean Utililities</description>
  <url>http://jakarta.apache.org/commons/beanutils/</url>
  <inceptionYear>2000</inceptionYear>
  
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <includes>
            <include>**/*TestCase.java</include>
          </includes>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.0</version>
    </dependency>
    <dependency>
      <groupId>commons-collections</groupId>
      <artifactId>commons-collections</artifactId>
      <version>2.0</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.7</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>