blob: 8a8d6b675dbf5ee81f685d049bda385bdbb2cef5 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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">
<parent>
<groupId>org.apache.jdo</groupId>
<artifactId>parent-pom</artifactId>
<version>3.1.1-SNAPSHOT</version>
<relativePath>../parent-pom</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>javax.jdo</groupId>
<artifactId>jdo-api</artifactId>
<name>JDO API</name>
<version>3.1.1-SNAPSHOT</version>
<description>The Java Data Objects (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>
<connection>scm:svn:http://svn.apache.org/repos/asf/db/jdo/branches/3.1-rc1</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/db/jdo/branches/3.1-rc1</developerConnection>
<url>http://svn.apache.org/viewvc/db/jdo</url>
</scm>
<build>
<sourceDirectory>src/java</sourceDirectory>
<testSourceDirectory>test/java</testSourceDirectory>
<resources>
<resource>
<targetPath>META-INF</targetPath>
<directory>src/main/resources</directory>
</resource>
<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/resources</directory>
<includes>
<include>**/*</include>
</includes>
</testResource>
<testResource>
<directory>${basedir}/test/schema</directory>
<includes>
<include>**/*.jdo</include>
<include>**/*.jdoquery</include>
<include>**/*.orm</include>
<include>**/jdoconfig.xml</include>
</includes>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<showWarnings>true</showWarnings>
<fork>true</fork>
<compilerArgument>-Xlint:unchecked</compilerArgument>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<!-- The next two plugins are required until such time as https://issues.apache.org/jira/browse/FELIX-3352 is fixed. -->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>prepare-package</phase>
<goals>
<goal>manifest</goal>
</goals>
<configuration>
<instructions>
<Specification-Version>JDO 3.1</Specification-Version>
<!-- Keep the API project's symbolic name the same as that in 3.0.1 for backward compatibility reasons -->
<Bundle-SymbolicName>javax.jdo</Bundle-SymbolicName>
<Bundle-Localization>plugin</Bundle-Localization>
<Bundle-DocURL>${project.parent.project.url}</Bundle-DocURL>
<Import-Package>
javax.transaction;resolution:=optional,
*
</Import-Package>
</instructions>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>
${project.build.outputDirectory}/META-INF/MANIFEST.MF
</manifestFile>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doctitle>${project.name} ${pom.currentVersion}</doctitle>
<windowtitle>${project.name} ${pom.currentVersion}</windowtitle>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>javax/jdo/util/AbstractTest.java</exclude>
<exclude>javax/jdo/pc/*.java</exclude>
</excludes>
<includes>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>transaction-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<artifactId>maven-changes-plugin</artifactId>
<configuration>
<xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
</configuration>
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<configuration>
<configLocation>${basedir}/../jdo_checks.xml</configLocation>
<headerLocation>${basedir}/../LICENSE.txt</headerLocation>
</configuration>
</plugin>
</plugins>
</reporting>
</project>