2010-02-10 14:17:55 -05:00
|
|
|
<?xml version="1.0"?>
|
2009-08-18 09:48:31 -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-03-18 10:23:51 -04:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.hibernate</groupId>
|
2008-04-21 20:55:03 -04:00
|
|
|
<artifactId>hibernate-parent</artifactId>
|
2010-04-20 21:58:27 -04:00
|
|
|
<version>3.6.0-SNAPSHOT</version>
|
2008-04-21 20:55:03 -04:00
|
|
|
<relativePath>parent/pom.xml</relativePath>
|
2008-03-18 10:23:51 -04:00
|
|
|
</parent>
|
2008-04-21 20:55:03 -04:00
|
|
|
|
2008-03-18 10:23:51 -04:00
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>Hibernate Core Aggregator</name>
|
|
|
|
<description>Aggregator of the Hibernate Core modules.</description>
|
|
|
|
|
|
|
|
<modules>
|
2008-04-21 20:55:03 -04:00
|
|
|
<module>parent</module>
|
2008-03-18 10:23:51 -04:00
|
|
|
<module>core</module>
|
2010-01-20 15:31:29 -05:00
|
|
|
<module>testing</module>
|
|
|
|
<module>testsuite</module>
|
2008-03-18 10:23:51 -04:00
|
|
|
<module>cache-ehcache</module>
|
2009-11-02 11:52:02 -05:00
|
|
|
<module>cache-jbosscache</module>
|
2008-03-18 10:23:51 -04:00
|
|
|
<module>cache-oscache</module>
|
|
|
|
<module>cache-swarmcache</module>
|
|
|
|
<module>connection-c3p0</module>
|
|
|
|
<module>connection-proxool</module>
|
2008-10-28 17:41:58 -04:00
|
|
|
<module>annotations</module>
|
2008-10-27 14:56:31 -04:00
|
|
|
<module>envers</module>
|
2009-10-15 12:26:26 -04:00
|
|
|
<module>jdbc3-testing</module>
|
2009-12-03 04:02:31 -05:00
|
|
|
<module>cache-infinispan</module>
|
2009-11-02 11:49:28 -05:00
|
|
|
<!--
|
2008-04-21 20:55:03 -04:00
|
|
|
<module>tutorials</module>
|
2009-11-02 11:49:28 -05:00
|
|
|
-->
|
2009-10-15 12:26:26 -04:00
|
|
|
<!--
|
2008-04-21 20:55:03 -04:00
|
|
|
Need to scope bytecode providers first...
|
2008-03-18 10:23:51 -04:00
|
|
|
<module>bytecode-cglib</module>
|
|
|
|
<module>bytecode-javassist</module>
|
|
|
|
-->
|
|
|
|
</modules>
|
2008-04-21 20:55:03 -04:00
|
|
|
|
2008-03-18 10:23:51 -04:00
|
|
|
<build>
|
2009-10-16 08:10:32 -04:00
|
|
|
<defaultGoal>install</defaultGoal>
|
2008-03-18 10:23:51 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
2009-08-18 13:23:57 -04:00
|
|
|
<version>2.0-beta-9</version>
|
2008-04-12 00:05:12 -04:00
|
|
|
<configuration>
|
2008-04-21 20:55:03 -04:00
|
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
2008-03-18 10:23:51 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2009-08-15 13:30:55 -04:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<!--
|
|
|
|
<configuration>
|
|
|
|
<stylesheetfile>src/main/javadoc/hibernate-javadoc.css</stylesheetfile>
|
|
|
|
</configuration>
|
|
|
|
-->
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2008-03-18 10:23:51 -04:00
|
|
|
</build>
|
|
|
|
|
2009-10-16 08:10:32 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>jdk6-modules</id>
|
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>disableJDK6Modules</name>
|
|
|
|
<value>!true</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
|
|
|
<modules>
|
2009-10-20 13:33:40 -04:00
|
|
|
<module>entitymanager</module>
|
2009-10-16 08:10:32 -04:00
|
|
|
<module>jdbc4-testing</module>
|
|
|
|
</modules>
|
|
|
|
</profile>
|
2008-03-18 10:23:51 -04:00
|
|
|
<profile>
|
|
|
|
<id>docs</id>
|
2008-04-28 11:39:28 -04:00
|
|
|
<activation>
|
|
|
|
<property>
|
|
|
|
<name>disableDistribution</name>
|
|
|
|
<value>!true</value>
|
|
|
|
</property>
|
|
|
|
</activation>
|
2008-03-18 10:23:51 -04:00
|
|
|
<modules>
|
|
|
|
<module>documentation</module>
|
2008-04-28 11:39:28 -04:00
|
|
|
<module>distribution</module>
|
2008-03-18 10:23:51 -04:00
|
|
|
</modules>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
2009-08-18 13:23:57 -04:00
|
|
|
</project>
|