Maven Repository - POM file for Library jpox 1.1.7 1.1.7

Summary

JPOX Core.

Java Persistent Objects (JPOX) is an OpenSource library for the persistence of Java objects..

Declaration

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

<dependency>
   <groupId>jpox</groupId>
   <artifactId>jpox</artifactId>
   <version>1.1.7</version>
</dependency>

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

License

Name:Apache 2
URL: http://www.jpox.org/docs/license.html.





Depends on

The jpox-1.1.7 has 6 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
ORMjdo2-api 2.0
The Java Data Objects 2.0 (JDO) API is a standard interface-based Java model abstraction of persistence, developed as Java Specification Request 243 under the auspices of the Java Community Process.
28
JEEconnector 1.0
The J2EE Connector architecture provides a Java technology solution to the problem of connectivity between the many application servers and today's enterprise information systems (EIS).
9
JEE Libraryjta 1.0.1B
The javax.transaction package. It is appropriate for inclusion in a classpath, and may be added to a Java 2 installation.
29
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

Packages

The following packages are defined in the jpox-1.1.7.jar

org.jpox
org.jpox.api
org.jpox.cache
org.jpox.datasource
org.jpox.exceptions
org.jpox.management
org.jpox.metadata
org.jpox.plugin
org.jpox.resource
org.jpox.sco
org.jpox.sco.exceptions
org.jpox.state
org.jpox.state.jdo
org.jpox.state.jpa
org.jpox.store
org.jpox.store.exceptions
org.jpox.store.expression
org.jpox.store.extent
org.jpox.store.fieldmanager
org.jpox.store.mapping
org.jpox.store.poid
org.jpox.store.query
org.jpox.store.rdbms
org.jpox.store.rdbms.adapter
org.jpox.store.rdbms.columninfo
org.jpox.store.rdbms.datatype
org.jpox.store.rdbms.exceptions
org.jpox.store.rdbms.expression
org.jpox.store.rdbms.extent
org.jpox.store.rdbms.fieldmanager
org.jpox.store.rdbms.key
org.jpox.store.rdbms.mapping
org.jpox.store.rdbms.mapping.oracle
org.jpox.store.rdbms.poid
org.jpox.store.rdbms.query
org.jpox.store.rdbms.request
org.jpox.store.rdbms.scostore
org.jpox.store.rdbms.sqlidentifier
org.jpox.store.rdbms.table
org.jpox.store.rdbms.typeinfo
org.jpox.store.scostore
org.jpox.util




POM File Source

Here is the content of the POM file.

<?xml version="1.0"?><project>
  <parent>
    <artifactId>jpox-parent</artifactId>
    <groupId>jpox</groupId>
    <version>1.1.7</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>jpox</artifactId>
  <name>JPOX Core</name>
  <version>1.1.7</version>
  <description>Java Persistent Objects (JPOX) is an OpenSource library for the persistence of Java objects.</description>
  <url>http://www.jpox.org</url>
  <licenses>
    <license>
      <name>Apache 2</name>
      <url>http://www.jpox.org/docs/license.html</url>
    </license>
  </licenses>
  <build>
    <sourceDirectory>src/java</sourceDirectory>
    <testSourceDirectory>src/test</testSourceDirectory>
    <resources>
      <resource>
        <directory>${basedir}/src/java</directory>
        <includes>
          <include>**/plugin.xml</include>
          <include>**/*.properties</include>
          <include>**/*.dtd</include>
        </includes>
      </resource>
      <resource>
        <directory>${basedir}/..</directory>
        <includes>
          <include>LICENSE.txt</include>
          <include>NOTICE.txt</include>
          <include>README</include>
        </includes>
      </resource>
    </resources>
  </build>
  <dependencies>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.8</version>
    </dependency>
    <dependency>
      <groupId>javax.jdo</groupId>
      <artifactId>jdo2-api</artifactId>
      <version>2.0</version>
    </dependency>
    <dependency>
      <groupId>javax.resource</groupId>
      <artifactId>connector</artifactId>
      <version>1.0</version>
    </dependency>
    <dependency>
      <groupId>javax.transaction</groupId>
      <artifactId>jta</artifactId>
      <version>1.0.1B</version>
    </dependency>
    <dependency>
      <groupId>ant</groupId>
      <artifactId>ant</artifactId>
      <version>1.6</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <reports>
    <report>maven-javadoc-plugin</report>
  </reports>
</project>