jpa-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.hibernate.java-persistence</groupId> <artifactId>jpa-api</artifactId> <version>2.0.Beta-20090815</version> </dependency>
<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.java-persistence</groupId> <artifactId>jpa-api</artifactId> <packaging>jar</packaging> <version>2.0.Beta-20090815</version> <name>JPA API (developmental)</name> <description> Hibernate developmental JSR 317 (Java Persistence API 2.0) contracts. Used to allow incremental implementation of features on the way to full JPA 2.0 support. </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/jpa-api-2.0.Beta-20090815</connection> <url>http://fisheye.jboss.org/browse/Hibernate/jpa-api/tags/jpa-api-2.0.Beta-20090815</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> <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>JAP 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>repository.jboss.org</id> <url>file://${maven.repository.root}</url> </repository> <snapshotRepository> <id>snapshots.jboss.org</id> <name>JBoss Snapshot Repository</name> <url>dav:https://snapshots.jboss.org/maven2</url> </snapshotRepository> </distributionManagement> </project>