Red Hat Application Migration Toolkit
<!-- ~ Copyright (c) 2008, 2009 Sun Microsystems. All rights reserved. ~ ~ This program and the accompanying materials are made available under the ~ terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 ~ which accompanies this distribution. ~ The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html ~ and the Eclipse Distribution License is available at ~ http://www.eclipse.org/org/documents/edl-v10.php. ~ ~ Contributors: ~ Linda DeMichiel - Java Persistence 2.0 - Version 2.0 (October 1, 2009) ~ Specification available from http://jcp.org/en/jsr/detail?id=317 --> <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.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.0-api</artifactId> <packaging>jar</packaging> <version>1.0.1.Final</version> <url>http://hibernate.org</url> <name>JPA 2.0 API</name> <description> Hibernate definition of the Java Persistence 2.0 (JSR 317) API. </description> <organization> <name>Hibernate.org</name> <url>http://hibernate.org</url> </organization> <inceptionYear>2007</inceptionYear> <licenses> <license> <url>license.txt</url> </license> </licenses> <scm> <connection>scm:svn:https://svn.jboss.org/repos/hibernate/jpa-api/tags/hibernate-jpa-2.0-api-1.0.1.Final</connection> <url>http://fisheye.jboss.org/browse/Hibernate/jpa-api/tags/hibernate-jpa-2.0-api-1.0.1.Final</url> </scm> <developers> <developer> <id>epbernard</id> <name>Emmanuel Bernard</name> <email>emmanuel@hibernate.org</email> <organization>JBoss by Red Hat</organization> <url>http://in.relation.to/Bloggers/Emmanuel</url> </developer> <developer> <id>hardy.ferentschik</id> <name>Hardy Ferentschik</name> <email>hferents@redhat.com</email> <organization>JBoss by Red Hat</organization> <url>http://in.relation.to/Bloggers/Hardy</url> </developer> <developer> <name>Steve Ebersole</name> <email>steve@hibernate.org</email> </developer> </developers> <build> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav</artifactId> <version>1.0-beta-2</version> </extension> </extensions> <resources> <resource> <filtering>false</filtering> <directory>${basedir}</directory> <includes> <include>license.txt</include> <include>readme.txt</include> </includes> </resource> </resources> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.2</version> <configuration> <archive> <manifestEntries> <Built-By>hibernate.org</Built-By> <Specification-Title>Java Persistence API, Version 2.0</Specification-Title> <Specification-Version>${pom.version}</Specification-Version> <Specification-Vendor>Sun Microsystems, Inc.</Specification-Vendor> <Implementation-Version>${pom.version}</Implementation-Version> <Implementation-Vendor>hibernate.org</Implementation-Vendor> <Implementation-Title>JPA API</Implementation-Title> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.5</version> <configuration> <use>true</use> <version>true</version> <overview>${basedir}/src/main/javadoc/package.html</overview> <windowtitle>EJB 3.0 Persistence API Documentation</windowtitle> <doctitle>EJB 3.0 Persistence API Documentation</doctitle> <links> <link>http://java.sun.com/j2se/1.5/docs/api</link> </links> <stylesheetfile>${basedir}/src/main/javadoc/jdstyle.css</stylesheetfile> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.0-beta-9</version> <configuration> <remoteTagging>true</remoteTagging> <goals>deploy</goals> </configuration> </plugin> </plugins> </pluginManagement> </build> <distributionManagement> <repository> <id>jboss-releases-repository</id> <name>JBoss Releases Repository</name> <url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>jboss-snapshots-repository</id> <name>JBoss Snapshot Repository</name> <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> </project>