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

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.1</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.1 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.1. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
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

Plugin

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

  1. maven-surefire-plugin

Packages

The following packages are defined in the commons-beanutils-1.6.1.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.1</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>