Maven Repository - POM file for Library ezmorph 1.0.3 1.0.3

Summary

ezmorph.

Simple java library for transforming an Object to another Object..

Declaration

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

<dependency>
   <groupId>net.sf.ezmorph</groupId>
   <artifactId>ezmorph</artifactId>
   <version>1.0.3</version>
</dependency>

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

License

Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.





Depends on

The ezmorph-1.0.3 has 5 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.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
Data Structurecommons-lang 2.3
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.
132
Logcommons-logging 1.1
Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems.
445

Depended by

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

CategoryArtifactDepended By Count
XMLjson-lib 2.1
Java library for transforming beans, maps, collections, java arrays and XML to JSON.
36
XMLjson-lib 2.1-rev6
Java library for transforming beans, maps, collections, java arrays and XML to JSON.
62

Plugin

The following plugins are used in the ezmorph-1.0.3.jar

  1. changes-maven-plugin
  2. cobertura-maven-plugin
  3. findbugs-maven-plugin
  4. javancss-maven-plugin
  5. jdepend-maven-plugin
  6. maven-compiler-plugin
  7. maven-javadoc-plugin
  8. maven-jxr-plugin
  9. maven-project-info-reports-plugin
  10. maven-site-plugin
  11. maven-surefire-plugin
  12. maven-surefire-report-plugin




Packages

The following packages are defined in the ezmorph-1.0.3.jar

net.sf.ezmorph
net.sf.ezmorph.array
net.sf.ezmorph.bean
net.sf.ezmorph.object
net.sf.ezmorph.primitive
net.sf.ezmorph.test

POM File Source

Here is the content of the POM file.

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

   <modelVersion>4.0.0</modelVersion>
   <groupId>net.sf.ezmorph</groupId>
   <artifactId>ezmorph</artifactId>
   <packaging>jar</packaging>
   <version>1.0.3</version>
   <name>ezmorph</name>

   <url>http://ezmorph.sourceforge.net</url>

   <description>
      Simple java library for transforming an Object to another Object.
   </description>

   <inceptionYear>2006</inceptionYear>
   <licenses>
      <license>
         <name>The Apache Software License, Version 2.0</name>
         <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
         <distribution>repo</distribution>
      </license>
   </licenses>

   <scm>
      <connection>
         scm:cvs:pserver:anonymous@ezmorph.cvs.sourceforge.net:/cvsroot/ezmorph:ezmorph
      </connection>
      <url>http://ezmorph.cvs.sourceforge.net/ezmorph</url>
      <developerConnection>
         scm:cvs:ext:${maven.username}@ezmorph.cvs.sourceforge.net:/cvsroot/ezmorph:ezmorph
      </developerConnection>
   </scm>
   <issueManagement>
      <system>SourceForge</system>
      <url>https://sourceforge.net/tracker/?group_id=174866</url>
   </issueManagement>

   <mailingLists />

   

   <dependencies>
      <dependency>
         <groupId>junit</groupId>
         <artifactId>junit</artifactId>
         <version>3.8.1</version>
         <optional>true</optional>
      </dependency>
      <dependency>
         <groupId>commons-lang</groupId>
         <artifactId>commons-lang</artifactId>
         <version>2.3</version>
      </dependency>
      <dependency>
         <groupId>commons-beanutils</groupId>
         <artifactId>commons-beanutils</artifactId>
         <version>1.7.0</version>
         <optional>true</optional>
      </dependency>
      <dependency>
         <groupId>commons-logging</groupId>
         <artifactId>commons-logging</artifactId>
         <version>1.1</version>
         <optional>true</optional>
         <exclusions>
            <exclusion>
               <groupId>log4j</groupId>
               <artifactId>log4j</artifactId>
            </exclusion>
            <exclusion>
               <groupId>logkit</groupId>
               <artifactId>logkit</artifactId>
            </exclusion>
            <exclusion>
               <groupId>avalon-framework</groupId>
               <artifactId>avalon-framework</artifactId>
            </exclusion>
            <exclusion>
               <groupId>javax.servlet</groupId>
               <artifactId>servlet-api</artifactId>
            </exclusion>
         </exclusions>
      </dependency>
      <dependency>
         <groupId>log4j</groupId>
         <artifactId>log4j</artifactId>
         <version>1.2.14</version>
         <optional>true</optional>
         <scope>runtime</scope>
      </dependency>
   </dependencies>

   <prerequisites>
      <maven>2.0.4</maven>
   </prerequisites>

   <build>
      <defaultGoal>install</defaultGoal>
      <plugins>
         <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
               <source>1.3</source>
               <target>1.1</target>
            </configuration>
         </plugin>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-site-plugin</artifactId>
            <configuration>
               <templateDirectory>
                  ${basedir}/src/site
               </templateDirectory>
               <template>site.vm</template>
            </configuration>
         </plugin>

         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
               <excludes>
                  <exclude>**/Abstract*.java</exclude>
                  <exclude>**/*TestSuite.java</exclude>
               </excludes>
               <includes>
                  <include>**/*Test.java</include>
               </includes>
            </configuration>
         </plugin>
      </plugins>
   </build>

   <reporting>
      <plugins>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-project-info-reports-plugin</artifactId>
         </plugin>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-report-plugin</artifactId>
         </plugin>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jxr-plugin</artifactId>
         </plugin>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <version>2.1</version>
            <configuration>
               <links>
                  <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
                  <link>http://www.junit.org/junit/javadoc/</link>
                  <link>
                     http://jakarta.apache.org/commons/beanutils/commons-beanutils-1.7.0/docs/api/
                  </link>
                  <link>
                     http://jakarta.apache.org/commons/lang/api-2.2/
                  </link>
               </links>
            </configuration>
         </plugin>
         <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>cobertura-maven-plugin</artifactId>
         </plugin>
         <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>changes-maven-plugin</artifactId>
            <reportSets>
               <reportSet>
                  <reports>
                     <report>changes-report</report>
                  </reports>
               </reportSet>
            </reportSets>
         </plugin>
         <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jdepend-maven-plugin</artifactId>
         </plugin>
         <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>javancss-maven-plugin</artifactId>
            <version>2.0-beta-1</version>
         </plugin>
         <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>findbugs-maven-plugin</artifactId>
            <version>1.0.0</version>
         </plugin>
      </plugins>
   </reporting>

</project>