2009-08-19 15:04:32 -04:00
|
|
|
<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">
|
2008-10-30 12:45:35 -04:00
|
|
|
|
2008-10-27 14:56:31 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-parent</artifactId>
|
2009-08-19 15:04:32 -04:00
|
|
|
<version>3.5.0-SNAPSHOT</version>
|
2008-10-27 14:56:31 -04:00
|
|
|
<relativePath>../parent/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-envers</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Hibernate Envers</name>
|
2008-10-30 05:05:38 -04:00
|
|
|
<description>Support for entity auditing</description>
|
2008-10-27 14:56:31 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<systemProperties>
|
|
|
|
</systemProperties>
|
|
|
|
<suiteXmlFiles>
|
2008-10-29 10:59:03 -04:00
|
|
|
<suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
|
2008-10-27 14:56:31 -04:00
|
|
|
</suiteXmlFiles>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<!-- javadocs : we want these run in the 'package' lifecycle phase-->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>javadoc</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<aggregate>${jbossenvers.reports.aggregate}</aggregate>
|
|
|
|
<links>
|
|
|
|
<link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
|
|
|
|
<link>http://java.sun.com/javaee/5/docs/api/</link>
|
|
|
|
</links>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2009-05-07 17:34:21 -04:00
|
|
|
<groupId>org.hibernate.java-persistence</groupId>
|
|
|
|
<artifactId>jpa-api</artifactId>
|
2008-10-27 14:56:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
2008-10-28 17:41:58 -04:00
|
|
|
<artifactId>hibernate-commons-annotations</artifactId>
|
2008-10-27 14:56:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
2008-10-28 17:41:58 -04:00
|
|
|
<artifactId>hibernate-annotations</artifactId>
|
2008-10-27 14:56:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-entitymanager</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-tools</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
<artifactId>testng</artifactId>
|
|
|
|
<version>5.8</version>
|
|
|
|
<classifier>jdk15</classifier>
|
2008-10-30 12:45:35 -04:00
|
|
|
<scope>test</scope>
|
2008-10-27 14:56:31 -04:00
|
|
|
</dependency>
|
2008-10-30 04:24:20 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
<version>1.0.79</version>
|
2008-10-30 12:45:35 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-04-02 12:29:06 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>cglib</groupId>
|
|
|
|
<artifactId>cglib</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2008-10-30 12:45:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javassist</groupId>
|
|
|
|
<artifactId>javassist</artifactId>
|
|
|
|
<scope>test</scope>
|
2008-10-30 04:24:20 -04:00
|
|
|
</dependency>
|
2008-10-27 14:56:31 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-core</artifactId>
|
|
|
|
<version>${version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-annotations</artifactId>
|
2008-10-28 17:41:58 -04:00
|
|
|
<version>${version}</version>
|
2008-10-27 14:56:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-entitymanager</artifactId>
|
2009-02-27 23:55:29 -05:00
|
|
|
<version>${version}</version>
|
2008-10-27 14:56:31 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-tools</artifactId>
|
|
|
|
<version>3.2.0.ga</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ant</groupId>
|
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
<version>1.6.5</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<!-- for now, at least, lets aggregate them -->
|
|
|
|
<jbossenvers.reports.aggregate>true</jbossenvers.reports.aggregate>
|
|
|
|
</properties>
|
2008-10-30 12:45:35 -04:00
|
|
|
|
2009-08-19 11:02:46 -04:00
|
|
|
</project>
|