Maven Repository - POM file for ORM jdo2-api 2.0 2.0

Summary

JDO2 API.

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

Declaration

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

<dependency>
   <groupId>javax.jdo</groupId>
   <artifactId>jdo2-api</artifactId>
   <version>2.0</version>
</dependency>

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





Depends on

The jdo2-api-2.0 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
XML Parserxml-apis 1.0.b2
xml-commons provides an Apache-hosted set of DOM, SAX, and JAXP interfaces for use in other xml-based projects. Our hope is that we can standardize on both a common version and packaging scheme for these critical XML standards interfaces to make the lives of both our developers ...
52

Depended by

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

CategoryArtifactDepended By Count
Springspring-orm 2.5.2
Spring Framework: ORM
5
Springspring-orm 2.5.6
Spring Framework: ORM
8
Springspring 2.5.5
Spring Framework
11
Springspring 2.5.2
Spring Framework
8
ORMjpox 1.1.6
JPOX is a free and fully compliant implementation of the JDO 1, JDO 2 specifications, providing transparent persistence of Java objects.
16
Springspring 2.5.6.SEC03
Spring Framework
12
Libraryjpox 1.1.7
Java Persistent Objects (JPOX) is an OpenSource library for the persistence of Java objects.
20
Springspring 2.5.4
Spring Framework
8
Springspring 2.5.6
Spring Framework
51
Springspring 2.0
Spring Framework
11
Springspring 1.2.9
Spring Framework
27
Springspring 2.5.6.SEC01
Spring Framework
5




Plugin

The following plugins are used in the jdo2-api-2.0.jar

  1. maven-surefire-plugin

Packages

The following packages are defined in the jdo2-api-2.0.jar

javax.jdo
javax.jdo.datastore
javax.jdo.identity
javax.jdo.listener
javax.jdo.spi

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?><project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>javax.jdo</groupId>
  <artifactId>jdo2-api</artifactId>
  <name>JDO2 API</name>
  <version>2.0</version>
  <description>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.</description>
  <scm />
  <build>
    <sourceDirectory>src/java</sourceDirectory>
    <testSourceDirectory>test/java</testSourceDirectory>
    <resources>
      <resource>
        <directory>${basedir}/src/java</directory>
        <includes>
          <include>javax/jdo/*.properties</include>
        </includes>
      </resource>
      <resource>
        <directory>${basedir}/src/schema</directory>
        <includes>
          <include>javax/jdo/*.dtd</include>
          <include>javax/jdo/*.xsd</include>
        </includes>
      </resource>
    </resources>
    <testResources>
      <testResource>
        <directory>${basedir}/test/schema</directory>
        <includes>
          <include>**/*.jdo</include>
          <include>**/*.jdoquery</include>
          <include>**/*.orm</include>
        </includes>
      </testResource>
    </testResources>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <includes>
            <include>**/*Test.java</include>
          </includes>
          <excludes>
            <exclude>javax/jdo/util/AbstractTest.java</exclude>
            <exclude>javax/jdo/pc/*.java</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>geronimo-spec</groupId>
      <artifactId>geronimo-spec-jta</artifactId>
      <version>1.0.1B-rc2</version>
    </dependency>
    <dependency>
      <groupId>xerces</groupId>
      <artifactId>xerces</artifactId>
      <version>2.4.0</version>
      <optional>true</optional>
    </dependency>
  <dependency>
      <groupId>xml-apis</groupId>
      <artifactId>xml-apis</artifactId>
      <version>1.0.b2</version>
      <optional>true</optional>
    </dependency>
  </dependencies>
</project>