106 lines
3.3 KiB
XML
106 lines
3.3 KiB
XML
<?xml version="1.0"?>
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-parent</artifactId>
|
|
<version>3.6.0-SNAPSHOT</version>
|
|
<relativePath>parent/pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Hibernate Core Aggregator</name>
|
|
<description>Aggregator of the Hibernate Core modules.</description>
|
|
|
|
<properties>
|
|
<!-- Skip artifact deployment -->
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>parent</module>
|
|
<module>core</module>
|
|
<module>testing</module>
|
|
<module>testsuite</module>
|
|
<module>cache-ehcache</module>
|
|
<module>cache-jbosscache</module>
|
|
<module>cache-oscache</module>
|
|
<module>cache-swarmcache</module>
|
|
<module>connection-c3p0</module>
|
|
<module>connection-proxool</module>
|
|
<module>envers</module>
|
|
<module>jdbc3-testing</module>
|
|
<module>cache-infinispan</module>
|
|
<!--
|
|
<module>tutorials</module>
|
|
-->
|
|
<!--
|
|
Need to scope bytecode providers first...
|
|
<module>bytecode-cglib</module>
|
|
<module>bytecode-javassist</module>
|
|
-->
|
|
</modules>
|
|
|
|
<build>
|
|
<defaultGoal>install</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>2.0-beta-9</version>
|
|
<configuration>
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
<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>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>jdk6-modules</id>
|
|
<activation>
|
|
<property>
|
|
<name>disableJDK6Modules</name>
|
|
<value>!true</value>
|
|
</property>
|
|
</activation>
|
|
<modules>
|
|
<module>entitymanager</module>
|
|
<module>jdbc4-testing</module>
|
|
</modules>
|
|
</profile>
|
|
<profile>
|
|
<id>docs</id>
|
|
<activation>
|
|
<property>
|
|
<name>disableDistribution</name>
|
|
<value>!true</value>
|
|
</property>
|
|
</activation>
|
|
<modules>
|
|
<module>documentation</module>
|
|
<module>distribution</module>
|
|
</modules>
|
|
</profile>
|
|
</profiles>
|
|
</project>
|