DataNucleus JDO Query.
Plugin for DataNucleus providing annotation processing for JDOQL typesafe queries.
Here is the list of declaration for datanucleus-jdo-query. 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-jdo-query</artifactId> <version>3.0.2</version> </dependency>
If you think this Maven repository POM file listing for datanucleus-jdo-query is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following plugins are used in the datanucleus-jdo-query-3.0.2.jar
The following packages are defined in the datanucleus-jdo-query-3.0.2.jar
org.datanucleus.jdo.query
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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.datanucleus</groupId> <artifactId>datanucleus-jdo-query</artifactId> <version>3.0.2</version> <name>DataNucleus JDO Query</name> <description> Plugin for DataNucleus providing annotation processing for JDOQL typesafe queries </description> <repositories> <repository> <id>DN_M2_Repo</id> <url>http://www.datanucleus.org/downloads/maven2/</url> </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>org.datanucleus</groupId> <artifactId>datanucleus-core</artifactId> <version>[3.0, )</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.datanucleus</groupId> <artifactId>datanucleus-api-jdo</artifactId> <version>[3.0, )</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.jdo</groupId> <artifactId>jdo-api</artifactId> <version>[3.0, )</version> <scope>provided</scope> </dependency> </dependencies> <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> <configuration> <filesets> <fileset> <directory>${basedir}</directory> <includes> <include>*.log</include> </includes> </fileset> </filesets> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> <compilerArgument> -proc:none</compilerArgument> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <testFailureIgnore>true</testFailureIgnore> <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.jdo.query;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> <configuration> <archive> <manifestFile>META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> </plugins> </build> </project>