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

Summary

Commons BeanUtils.

BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection..

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

License

Apache License.





Depends on

The commons-beanutils-1.8.2 has 4 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
Logcommons-logging 1.1.1
Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems.
1143
Data Structurecommons-collections 3.2.1
Types that extend and augment the Java Collections Framework.
419
JUnitjunit 3.8.1
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.
1966

Depended by

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

CategoryArtifactDepended By Count
Libraryutil 1.2
A bunch of useful classes.
6
Networkpytheas-core 1.11
pytheas-core developed by Netflix
12
Libraryjxls-core 1.0.3
jXLS is a small and easy-to-use Java library for generating Excel files using XLS templates
17
Libraryjxls-core 1.0
jXLS is a small and easy-to-use Java library for generating Excel files using XLS templates
6

Plugin

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

  1. clirr-maven-plugin
  2. maven-antrun-plugin
  3. maven-assembly-plugin
  4. maven-changes-plugin
  5. maven-checkstyle-plugin
  6. maven-javadoc-plugin
  7. maven-surefire-plugin




Packages

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

org.apache.commons.beanutils
org.apache.commons.beanutils.converters
org.apache.commons.beanutils.expression
org.apache.commons.beanutils.locale
org.apache.commons.beanutils.locale.converters
org.apache.commons.collections

POM File Source

Here is the content of the POM file.

<?xml version="1.0"?>
<!--
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
-->
<project
    xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <parent>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-parent</artifactId>
    <version>12</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>commons-beanutils</groupId>
  <artifactId>commons-beanutils</artifactId>
  <version>1.8.2</version>
  <name>Commons BeanUtils</name>

  <inceptionYear>2000</inceptionYear>
  <description>BeanUtils provides an easy-to-use but flexible wrapper around reflection and introspection.</description>

  <url>http://commons.apache.org/beanutils/</url>

  <issueManagement>
    <system>jira</system>
    <url>http://issues.apache.org/jira/browse/BEANUTILS</url>
  </issueManagement>

  <scm>
    <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/beanutils/trunk/</connection>
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/beanutils/trunk/</developerConnection>
    <url>http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/</url>
  </scm>

  

  <contributors>
    <contributor>
      <name>Paul Jack</name>
      <email></email>
    </contributor>
    <contributor>
      <name>Stephen Colebourne</name>
      <email></email>
    </contributor>
    <contributor>
      <name>Berin Loritsch</name>
      <email></email>
    </contributor>    
  </contributors>

  <dependencies>
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.1.1</version>
    </dependency>
    <dependency>
      <groupId>commons-collections</groupId>
      <artifactId>commons-collections</artifactId> 
      <version>3.2.1</version> 
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>commons-collections</groupId>
      <artifactId>commons-collections-testframework</artifactId> 
      <version>3.2.1</version> 
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
      <sourceDirectory>src/java</sourceDirectory>
      <testSourceDirectory>src/test</testSourceDirectory>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
              <forkMode>pertest</forkMode>
              <!-- limit memory size see BEANUTILS-291 -->
              <argLine>-Xmx25M</argLine>
              <includes>
                <include>**/*TestCase.java</include>
              </includes>
              <excludes>
                <!-- This test case is known to fail, and there isn't any proposed fix
                  -  so we will just exclude it until someone comes up with a solution.
                -->
                <exclude>**/*MemoryTestCase.java</exclude>
              </excludes>

              <!-- Configure Logging -->
              <redirectTestOutputToFile>true</redirectTestOutputToFile>
              <systemProperties>
                  <property>
                      <name>org.apache.commons.logging.LogFactory</name>
                      <value>org.apache.commons.logging.impl.LogFactoryImpl</value>
                  </property>
                  <property>
                      <name>org.apache.commons.logging.Log</name>
                      <value>org.apache.commons.logging.impl.SimpleLog</value>
                  </property>
                  <property>
                      <name>org.apache.commons.logging.simplelog.defaultlog</name>
                      <value>WARN</value>
                  </property>
              </systemProperties>

          </configuration>
        </plugin>
        <plugin>
          <artifactId>maven-antrun-plugin</artifactId>
          <executions>
            <execution>
              <phase>package</phase>
              <configuration>
                <tasks>
                  <ant antfile="build-other-jars.xml" target="other-jars">
                    <property name="component.version"    value="${project.version}"/>
                    <property name="build.home"           value="${project.build.directory}"/>
                    <property name="dist.home"            value="${project.build.directory}"/>
                    <property name="maven.compile.source" value="${maven.compile.source}"/>
                    <property name="maven.compile.target" value="${maven.compile.target}"/>
                  </ant>
                </tasks>
              </configuration>
              <goals>
                <goal>run</goal>
              </goals>
            </execution>
          </executions>
        </plugin>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <configuration>
                <descriptors>
                    <descriptor>src/main/assembly/bin.xml</descriptor>
                    <descriptor>src/main/assembly/src.xml</descriptor>
                </descriptors>
                <tarLongFileMode>gnu</tarLongFileMode>
            </configuration>
        </plugin>
      </plugins>
    </build>

    <properties>
        <maven.compile.source>1.3</maven.compile.source>
        <maven.compile.target>1.3</maven.compile.target>
        <commons.componentid>beanutils</commons.componentid>
        <commons.release.version>1.8.2</commons.release.version>
        <commons.jira.id>BEANUTILS</commons.jira.id>
        <commons.jira.pid>12310460</commons.jira.pid>
        <commons.osgi.export>
             !org.apache.commons.collections,
              org.apache.commons.beanutils.*;version=${pom.version}
        </commons.osgi.export>
    </properties> 

    <reporting>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-checkstyle-plugin</artifactId>
                <version>2.3</version>
                <configuration>
                    <configLocation>${basedir}/checkstyle.xml</configLocation>
                    <enableRulesSummary>false</enableRulesSummary>
                    <headerFile>${basedir}/license-header.txt</headerFile>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>clirr-maven-plugin</artifactId>
                <version>2.2.2</version>
                <configuration>
                    <comparisonVersion>1.8.0</comparisonVersion>
                    <minSeverity>info</minSeverity>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.4</version>
                <configuration>
                    <linksource>true</linksource>
                    <links>
                        <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
                        <link>http://commons.apache.org/collections/api-release/</link>
                    </links>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-changes-plugin</artifactId>
                <version>2.1</version>
                <configuration>
                    <xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
                    <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
                </configuration>
                <reportSets>
                    <reportSet>
                        <reports>
                            <report>changes-report</report>
                        </reports>
                    </reportSet>
                </reportSets>
            </plugin>
        </plugins>
    </reporting>

</project>