2007-08-03 00:09:17 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2007-06-29 15:24:24 -04:00
|
|
|
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>
|
|
|
|
|
2007-07-16 23:15:03 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-core-parent</artifactId>
|
|
|
|
<version>1</version>
|
|
|
|
</parent>
|
|
|
|
|
2007-06-29 15:24:24 -04:00
|
|
|
<groupId>org.hibernate</groupId>
|
2007-07-16 23:15:03 -04:00
|
|
|
<artifactId>hibernate</artifactId>
|
2007-06-29 15:24:24 -04:00
|
|
|
<packaging>pom</packaging>
|
2007-07-16 23:15:03 -04:00
|
|
|
<version>3.3.0-SNAPSHOT</version>
|
2007-06-29 15:24:24 -04:00
|
|
|
|
2007-07-16 23:15:03 -04:00
|
|
|
<name>Hibernate Core Aggregator</name>
|
|
|
|
<description>Aggregator of the Hibernate Core modules.</description>
|
2007-08-03 00:09:17 -04:00
|
|
|
<url>http://hibernate.org</url>
|
2007-06-29 15:24:24 -04:00
|
|
|
|
|
|
|
<scm>
|
2007-07-16 23:15:03 -04:00
|
|
|
<connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/trunk</connection>
|
|
|
|
<developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/trunk</developerConnection>
|
|
|
|
<url>https://svn.jboss.org/repos/hibernate/core/trunk</url>
|
2007-06-29 15:24:24 -04:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<modules>
|
2007-07-16 23:15:03 -04:00
|
|
|
<module>core</module>
|
|
|
|
<module>cache-ehcache</module>
|
|
|
|
<module>cache-jbosscache</module>
|
|
|
|
<module>cache-jbosscache2</module>
|
|
|
|
<module>cache-oscache</module>
|
|
|
|
<module>cache-swarmcache</module>
|
|
|
|
<module>connection-c3p0</module>
|
|
|
|
<module>connection-proxool</module>
|
|
|
|
<module>jmx</module>
|
|
|
|
<module>testing</module>
|
|
|
|
<module>testsuite</module>
|
|
|
|
<module>eg</module>
|
|
|
|
<!-- Need to scope bytecode providers first
|
|
|
|
<module>bytecode-cglib</module>
|
|
|
|
<module>bytecode-javassist</module>
|
|
|
|
-->
|
2007-06-29 15:24:24 -04:00
|
|
|
<module>documentation</module>
|
|
|
|
</modules>
|
2007-07-16 23:15:03 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>2.0-beta-6</version>
|
|
|
|
<configuration>
|
|
|
|
<autoVersionSubmodules>true</autoVersionSubmodules>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2007-07-20 15:21:41 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>2.2-beta-1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>assemble</id>
|
2007-07-21 03:14:55 -04:00
|
|
|
<phase>deploy</phase>
|
2007-07-20 15:21:41 -04:00
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<descriptors>
|
|
|
|
<descriptor>src/assembly/dist.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2007-07-16 23:15:03 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|