DataNucleus JDO API plugin.
Plugin providing DataNucleus implementation of JDO API..
Here is the list of declaration for datanucleus-api-jdo. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.datanucleus</groupId> <artifactId>datanucleus-api-jdo</artifactId> <version>3.2.0-release</version> </dependency>
If you think this Maven repository POM file listing for datanucleus-api-jdo is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The datanucleus-api-jdo-3.2.0-release has 2 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JEE Library | jta 1.1 The javax.transaction package. It is appropriate for inclusion in a classpath, and may be added to a Java 2 installation. | 184 |
JUnit | junit 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 |
The following plugins are used in the datanucleus-api-jdo-3.2.0-release.jar
The following packages are defined in the datanucleus-api-jdo-3.2.0-release.jar
org.datanucleus.api.jdo org.datanucleus.api.jdo.exceptions org.datanucleus.api.jdo.metadata org.datanucleus.api.jdo.query org.datanucleus.api.jdo.state org.datanucleus.query.typesafe
Here is the content of the POM file.
<?xml version="1.0"?> <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>org.datanucleus</groupId> <version>3.2.0-release</version> <artifactId>datanucleus-api-jdo</artifactId> <name>DataNucleus JDO API plugin</name> <description> Plugin providing DataNucleus implementation of JDO API. </description> <url>http://www.datanucleus.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <url>http://datanucleus.svn.sourceforge.net/viewvc/datanucleus/platform/api.jdo/trunk/</url> <connection>scm:svn:https://datanucleus.svn.sourceforge.net/svnroot/datanucleus/platform/api.jdo/trunk</connection> </scm> <repositories> <repository> <id>DN_M2_Repo</id> <url>http://www.datanucleus.org/downloads/maven2/</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <distributionManagement> <snapshotRepository> <id>datanucleus-nightly</id> <name>DataNucleus Nightly</name> <url>file:/home/jpox/htdocs/downloads/maven2-nightly/</url> <uniqueVersion>false</uniqueVersion> </snapshotRepository> <repository> <id>datanucleus</id> <url>scpexe://www.datanucleus.org//home/jpox/htdocs/downloads/maven2/</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>javax.jdo</groupId> <artifactId>jdo-api</artifactId> <version>[3.0, )</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.datanucleus</groupId> <artifactId>datanucleus-core</artifactId> <version>[3.2.0-m4, )</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.transaction</groupId> <artifactId>jta</artifactId> <version>1.1</version> <scope>provided</scope> <optional>true</optional> </dependency> <!-- Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>[1.2, 1.3)</version> <scope>test</scope> </dependency> </dependencies> <!-- Build process --> <build> <sourceDirectory>src/java</sourceDirectory> <resources> <resource> <filtering>true</filtering> <directory>src/java</directory> <includes> <include>**/plugin.xml</include> <include>**/*.properties</include> <include>**/*.dtd</include> <include>**/*.xsd</include> <include>**/*.jdo</include> <include>**/META-INF/services/*</include> </includes> </resource> <resource> <directory>${basedir}</directory> <includes> <include>plugin.xml</include> <include>schema/*</include> </includes> </resource> <resource> <!-- Need to have MANIFEST-MF in place before packaging, so unit-tests will work --> <directory>${basedir}/META-INF</directory> <targetPath>META-INF</targetPath> <includes> <include>MANIFEST.MF</include> <include>LICENSE.txt</include> <include>NOTICE.txt</include> <include>README.txt</include> </includes> </resource> </resources> <testSourceDirectory>src/test</testSourceDirectory> <testResources> <testResource> <directory>${basedir}/src/test</directory> <includes> <include>**/persistence*.xml</include> <include>**/plugin*.xml</include> <include>**/*.jdo*</include> <include>**/*.orm*</include> <include>**/*.xsd</include> <include>**/*.jdoquery*</include> <include>**/*.MF</include> <include>log4j.properties</include> </includes> </testResource> </testResources> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.4.1</version> <configuration> <filesets> <fileset> <directory>${basedir}</directory> <includes> <include>*.log</include> </includes> </fileset> </filesets> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.10</version> <configuration> <argLine>-Xmx128m</argLine> <includes> <include>**/*Test.java</include> </includes> </configuration> </plugin> <!-- For one day when we use BND to generate MANIFEST.MF --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.3.5</version> <extensions>true</extensions> <!--executions> <execution> <phase>process-classes</phase> <id>felix-bundle-manifest</id> <goals> <goal>manifest</goal> </goals> </execution> </executions--> <configuration> <manifestLocation>${project.build.directory}/bnd/</manifestLocation> <dumpInstructions>${project.build.directory}/bnd/instructions.properties</dumpInstructions> <instructions> <Bundle-SymbolicName>org.datanucleus.api.jdo;singleton:=true</Bundle-SymbolicName> <Import-Package> javax.jdo*;version="3.0.0", *;resolution:=optional </Import-Package> </instructions> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.3.2</version> <configuration> <archive> <manifestFile>META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh-external</artifactId> <version>2.2</version> </extension> </extensions> </build> </project>