Hibernate SVN: r11595 - trunk/sandbox/maven-poc.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2007-05-29 23:03:45 -0400 (Tue, 29 May 2007)
New Revision: 11595
Added:
trunk/sandbox/maven-poc/1.70.1/
Removed:
trunk/sandbox/maven-poc/docbook/
Log:
prep adding docbook 1.72
Copied: trunk/sandbox/maven-poc/1.70.1 (from rev 11593, trunk/sandbox/maven-poc/docbook)
17 years, 6 months
Hibernate SVN: r11594 - in trunk/Hibernate3: code/cache-ehcache and 21 other directories.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2007-05-29 11:40:22 -0400 (Tue, 29 May 2007)
New Revision: 11594
Modified:
trunk/Hibernate3/code/cache-ehcache/pom.xml
trunk/Hibernate3/code/cache-jbosscache/pom.xml
trunk/Hibernate3/code/cache-jbosscache2/pom.xml
trunk/Hibernate3/code/cache-oscache/pom.xml
trunk/Hibernate3/code/cache-swarmcache/pom.xml
trunk/Hibernate3/code/connection-c3p0/pom.xml
trunk/Hibernate3/code/connection-proxool/pom.xml
trunk/Hibernate3/code/core/pom.xml
trunk/Hibernate3/code/eg/pom.xml
trunk/Hibernate3/code/jmx/pom.xml
trunk/Hibernate3/code/testing/pom.xml
trunk/Hibernate3/code/testsuite/pom.xml
trunk/Hibernate3/documentation/manual/en-US/pom.xml
trunk/Hibernate3/documentation/manual/es-ES/pom.xml
trunk/Hibernate3/documentation/manual/fr-FR/pom.xml
trunk/Hibernate3/documentation/manual/ja-JP/pom.xml
trunk/Hibernate3/documentation/manual/ko-KR/pom.xml
trunk/Hibernate3/documentation/manual/pom.xml
trunk/Hibernate3/documentation/manual/pt-BR/pom.xml
trunk/Hibernate3/documentation/manual/zh-CN/pom.xml
trunk/Hibernate3/documentation/pom.xml
trunk/Hibernate3/documentation/tutorial/pom.xml
trunk/Hibernate3/pom.xml
Log:
split doc/code
Modified: trunk/Hibernate3/code/cache-ehcache/pom.xml
===================================================================
--- trunk/Hibernate3/code/cache-ehcache/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/code/cache-ehcache/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -6,21 +6,23 @@
<parent>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-code</artifactId>
<version>3.3.0.beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-ehcache</artifactId>
- <packaging>jar</packaging>
+ <packaging>jar</packaging>
+
<name>Hibernate Ehcache integration</name>
<description>Integration of Hibernate with Ehcache</description>
<dependencies>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-core</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
@@ -29,4 +31,4 @@
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/Hibernate3/code/cache-jbosscache/pom.xml
===================================================================
--- trunk/Hibernate3/code/cache-jbosscache/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/code/cache-jbosscache/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -6,21 +6,23 @@
<parent>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-code</artifactId>
<version>3.3.0.beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jbosscache</artifactId>
- <packaging>jar</packaging>
+ <packaging>jar</packaging>
+
<name>Hibernate JBossCache integration</name>
<description>Integration of Hibernate with JBossCache (based on JBossCache1.x APIs)</description>
<dependencies>
<dependency>
<groupId>${groupId}</groupId>
- <artifactId>hibernate-core</artifactId>
+ <artifactId>hibernate-core</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
@@ -60,4 +62,4 @@
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/Hibernate3/code/cache-jbosscache2/pom.xml
===================================================================
--- trunk/Hibernate3/code/cache-jbosscache2/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/code/cache-jbosscache2/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -6,21 +6,23 @@
<parent>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-code</artifactId>
<version>3.3.0.beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jbosscache2</artifactId>
- <packaging>jar</packaging>
+ <packaging>jar</packaging>
+
<name>Hibernate JBossCache2.x integration</name>
<description>Integration of Hibernate with JBossCache (based on JBossCache2.x APIs)</description>
<dependencies>
<dependency>
<groupId>${groupId}</groupId>
- <artifactId>hibernate-core</artifactId>
+ <artifactId>hibernate-core</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
<dependency>
<groupId>jboss</groupId>
@@ -55,4 +57,4 @@
</plugins>
</build>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/Hibernate3/code/cache-oscache/pom.xml
===================================================================
--- trunk/Hibernate3/code/cache-oscache/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/code/cache-oscache/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -6,21 +6,23 @@
<parent>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-code</artifactId>
<version>3.3.0.beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-oscache</artifactId>
- <packaging>jar</packaging>
+ <packaging>jar</packaging>
+
<name>Hibernate OSCache integration</name>
<description>Integration of Hibernate with OSCache</description>
<dependencies>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-core</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
<dependency>
<groupId>opensymphony</groupId>
@@ -29,4 +31,4 @@
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/Hibernate3/code/cache-swarmcache/pom.xml
===================================================================
--- trunk/Hibernate3/code/cache-swarmcache/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/code/cache-swarmcache/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -6,21 +6,23 @@
<parent>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-code</artifactId>
<version>3.3.0.beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-swarmcache</artifactId>
- <packaging>jar</packaging>
+ <packaging>jar</packaging>
+
<name>Hibernate SwarmCache integration</name>
<description>Integration of Hibernate with SwarmCache</description>
<dependencies>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-core</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
<dependency>
<groupId>swarmcache</groupId>
@@ -29,4 +31,4 @@
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/Hibernate3/code/connection-c3p0/pom.xml
===================================================================
--- trunk/Hibernate3/code/connection-c3p0/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/code/connection-c3p0/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -6,21 +6,23 @@
<parent>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-code</artifactId>
<version>3.3.0.beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-c3p0</artifactId>
- <packaging>jar</packaging>
+ <packaging>jar</packaging>
+
<name>Hibernate C3P0 ConnectionProvider</name>
<description>C3P0-based implementation of the Hibernate ConnectionProvder contract</description>
<dependencies>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-core</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
<dependency>
<groupId>c3p0</groupId>
@@ -29,4 +31,4 @@
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/Hibernate3/code/connection-proxool/pom.xml
===================================================================
--- trunk/Hibernate3/code/connection-proxool/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/code/connection-proxool/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -6,21 +6,23 @@
<parent>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-code</artifactId>
<version>3.3.0.beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-proxool</artifactId>
- <packaging>jar</packaging>
+ <packaging>jar</packaging>
+
<name>Hibernate Proxool ConnectionProvider</name>
<description>Proxool-based implementation of the Hibernate ConnectionProvder contract</description>
<dependencies>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-core</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
<dependency>
<groupId>proxool</groupId>
@@ -29,4 +31,4 @@
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/Hibernate3/code/core/pom.xml
===================================================================
--- trunk/Hibernate3/code/core/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/code/core/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -2,13 +2,13 @@
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-core-project</artifactId>
- <version>3.3.0.beta1</version>
- <relativePath>../pom.xml</relativePath>
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-code</artifactId>
+ <version>3.3.0.beta1</version>
+ <relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
@@ -18,8 +18,6 @@
<name>Hibernate Core</name>
<description>The core functionality of Hibernate</description>
- <url>http://hibernate.org</url>
-
<dependencies>
<dependency>
<groupId>antlr</groupId>
Modified: trunk/Hibernate3/code/eg/pom.xml
===================================================================
--- trunk/Hibernate3/code/eg/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/code/eg/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -6,21 +6,23 @@
<parent>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-code</artifactId>
<version>3.3.0.beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-eg</artifactId>
- <packaging>jar</packaging>
+ <packaging>jar</packaging>
+
<name>Hibernate Example</name>
<description>A simple example of Hibernate functionality</description>
<dependencies>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-core</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
</dependencies>
Modified: trunk/Hibernate3/code/jmx/pom.xml
===================================================================
--- trunk/Hibernate3/code/jmx/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/code/jmx/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -6,22 +6,24 @@
<parent>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-code</artifactId>
<version>3.3.0.beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jmx</artifactId>
- <packaging>jar</packaging>
+ <packaging>jar</packaging>
+
<name>Hibernate JMX Module</name>
- <url>http://hibernate.org</url>
+ <description>Defines Hibernate JMX functionality</description>
<dependencies>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-core</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/Hibernate3/code/testing/pom.xml
===================================================================
--- trunk/Hibernate3/code/testing/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/code/testing/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -6,27 +6,31 @@
<parent>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-code</artifactId>
<version>3.3.0.beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-testing</artifactId>
- <packaging>jar</packaging>
+ <packaging>jar</packaging>
+
<name>Hibernate Testing</name>
+ <description>Hibernate JUnit test utilities</description>
<dependencies>
<dependency>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-core</artifactId>
+ <version>${hibernate.core.version}</version>
+ </dependency>
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>3.8.1</version>
+ <version>3.8.1</version>
+ <!-- here we need to pull JUnit deps into compile scope... -->
<scope>compile</scope>
</dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
- </dependency>
</dependencies>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/Hibernate3/code/testsuite/pom.xml
===================================================================
--- trunk/Hibernate3/code/testsuite/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/code/testsuite/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -6,42 +6,48 @@
<parent>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-code</artifactId>
<version>3.3.0.beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-testsuite</artifactId>
- <packaging>jar</packaging>
+ <packaging>jar</packaging>
+
<name>Hibernate Testsuite</name>
<description>The testsuite of Hibernate functionality</description>
- <url>http://hibernate.org</url>
<dependencies>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-core</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-testing</artifactId>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-testing</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-ehcache</artifactId>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-ehcache</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-jbosscache</artifactId>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-jbosscache</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-oscache</artifactId>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-oscache</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
<dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-swarmcache</artifactId>
+ <groupId>${groupId}</groupId>
+ <artifactId>hibernate-swarmcache</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
@@ -66,7 +72,8 @@
<artifactId>asm-attrs</artifactId>
<version>1.5.3</version>
<optional>true</optional>
- </dependency>
+ </dependency>
+ <!-- optional dom4j dependency; needed here for dom4j (de)serialization -->
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
@@ -128,4 +135,4 @@
</profile>
</profiles>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/Hibernate3/documentation/manual/en-US/pom.xml
===================================================================
--- trunk/Hibernate3/documentation/manual/en-US/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/documentation/manual/en-US/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -8,7 +8,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId>
<version>3.3.0.beta1</version>
- <relativePath>../../../pom.xml</relativePath>
+ <relativePath>../pom.xml</relativePath>
</parent>
<artifactId>hibernate-manual-${translation}</artifactId>
Modified: trunk/Hibernate3/documentation/manual/es-ES/pom.xml
===================================================================
--- trunk/Hibernate3/documentation/manual/es-ES/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/documentation/manual/es-ES/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -8,7 +8,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId>
<version>3.3.0.beta1</version>
- <relativePath>../../../pom.xml</relativePath>
+ <relativePath>../pom.xml</relativePath>
</parent>
<artifactId>hibernate-manual-${translation}</artifactId>
Modified: trunk/Hibernate3/documentation/manual/fr-FR/pom.xml
===================================================================
--- trunk/Hibernate3/documentation/manual/fr-FR/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/documentation/manual/fr-FR/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -8,7 +8,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId>
<version>3.3.0.beta1</version>
- <relativePath>../../../pom.xml</relativePath>
+ <relativePath>../pom.xml</relativePath>
</parent>
<artifactId>hibernate-manual-${translation}</artifactId>
Modified: trunk/Hibernate3/documentation/manual/ja-JP/pom.xml
===================================================================
--- trunk/Hibernate3/documentation/manual/ja-JP/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/documentation/manual/ja-JP/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -8,7 +8,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId>
<version>3.3.0.beta1</version>
- <relativePath>../../../pom.xml</relativePath>
+ <relativePath>../pom.xml</relativePath>
</parent>
<artifactId>hibernate-manual-${translation}</artifactId>
Modified: trunk/Hibernate3/documentation/manual/ko-KR/pom.xml
===================================================================
--- trunk/Hibernate3/documentation/manual/ko-KR/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/documentation/manual/ko-KR/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -8,7 +8,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId>
<version>3.3.0.beta1</version>
- <relativePath>../../../pom.xml</relativePath>
+ <relativePath>../pom.xml</relativePath>
</parent>
<artifactId>hibernate-manual-${translation}</artifactId>
Modified: trunk/Hibernate3/documentation/manual/pom.xml
===================================================================
--- trunk/Hibernate3/documentation/manual/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/documentation/manual/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -6,9 +6,9 @@
<parent>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-documentation</artifactId>
<version>3.3.0.beta1</version>
- <relativePath>../../pom.xml</relativePath>
+ <relativePath>../pom.xml</relativePath>
</parent>
<artifactId>hibernate-manual</artifactId>
Modified: trunk/Hibernate3/documentation/manual/pt-BR/pom.xml
===================================================================
--- trunk/Hibernate3/documentation/manual/pt-BR/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/documentation/manual/pt-BR/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -8,7 +8,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId>
<version>3.3.0.beta1</version>
- <relativePath>../../../pom.xml</relativePath>
+ <relativePath>.../pom.xml</relativePath>
</parent>
<artifactId>hibernate-manual-${translation}</artifactId>
Modified: trunk/Hibernate3/documentation/manual/zh-CN/pom.xml
===================================================================
--- trunk/Hibernate3/documentation/manual/zh-CN/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/documentation/manual/zh-CN/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -8,7 +8,7 @@
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId>
<version>3.3.0.beta1</version>
- <relativePath>../../../pom.xml</relativePath>
+ <relativePath>../pom.xml</relativePath>
</parent>
<artifactId>hibernate-manual-${translation}</artifactId>
Modified: trunk/Hibernate3/documentation/pom.xml
===================================================================
--- trunk/Hibernate3/documentation/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/documentation/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -6,15 +6,16 @@
<parent>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-parent</artifactId>
<version>3.3.0.beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>hibernate-documentation</artifactId>
<packaging>pom</packaging>
- <name>Hibernate Documentation Project</name>
- <description>The grouping project for Hibernate documentation</description>
+
+ <name>Hibernate Core - Documentation</name>
+ <description>Grouping of Hibernate Core Project documentation modules</description>
<modules>
<module>manual</module>
Modified: trunk/Hibernate3/documentation/tutorial/pom.xml
===================================================================
--- trunk/Hibernate3/documentation/tutorial/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/documentation/tutorial/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -6,7 +6,7 @@
<parent>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-documentation</artifactId>
<version>3.3.0.beta1</version>
<relativePath>../pom.xml</relativePath>
</parent>
@@ -21,6 +21,7 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
+ <version>${hibernate.core.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Modified: trunk/Hibernate3/pom.xml
===================================================================
--- trunk/Hibernate3/pom.xml 2007-05-29 14:27:48 UTC (rev 11593)
+++ trunk/Hibernate3/pom.xml 2007-05-29 15:40:22 UTC (rev 11594)
@@ -5,12 +5,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.hibernate</groupId>
- <artifactId>hibernate-core-project</artifactId>
+ <artifactId>hibernate-parent</artifactId>
<packaging>pom</packaging>
<version>3.3.0.beta1</version>
- <name>Hibernate Core Project</name>
- <description>The overall grouping Maven project for the Hibernate Core project, defining the individual modules</description>
+ <name>Hibernate Parent</name>
+ <description>The parent POM for all Hibernate Core modules.</description>
<url>http://hibernate.org</url>
<issueManagement>
@@ -80,176 +80,12 @@
</scm>
<modules>
- <module>core</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>jmx</module>
- <module>testing</module>
+ <module>code</module>
<module>documentation</module>
- <module>testsuite</module>
- <module>eg</module>
-<!-- Need to scope bytecode providers first
- <module>bytecode-cglib</module>
- <module>bytecode-javassist</module>
--->
</modules>
+
+ <properties>
+ <hibernate.core.version>${version}</hibernate.core.version>
+ </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>${groupId}</groupId>
- <artifactId>hibernate-core</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>${groupId}</groupId>
- <artifactId>hibernate-ehcache</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>${groupId}</groupId>
- <artifactId>hibernate-jbosscache</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>${groupId}</groupId>
- <artifactId>hibernate-oscache</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>${groupId}</groupId>
- <artifactId>hibernate-swarmcache</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>${groupId}</groupId>
- <artifactId>hibernate-c3p0</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>${groupId}</groupId>
- <artifactId>hibernate-proxool</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>${groupId}</groupId>
- <artifactId>hibernate-jmx</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>${groupId}</groupId>
- <artifactId>hibernate-testing</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>${groupId}</groupId>
- <artifactId>hibernate-testsuite</artifactId>
- <version>${version}</version>
- </dependency>
- <dependency>
- <groupId>${groupId}</groupId>
- <artifactId>hibernate-manual</artifactId>
- <version>${version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
-
- <repositories>
- <repository>
- <id>jboss-maven-repo</id>
- <name>JBoss maintained repo</name>
- <url>http://repository.jboss.com/maven2</url>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- </repository>
- </repositories>
-
- <profiles>
- <profile>
- <id>jbosscache2-module</id>
- <modules>
- <module>cache-jbosscache2</module>
- </modules>
- <activation>
- <jdk>1.5</jdk>
- </activation>
- </profile>
- </profiles>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.4</source>
- <target>1.4</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
-
- <!-- Not really caring about reporting plugin versions; I think this is ok??? -->
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <configuration>
- <links>
- <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
- <link>http://java.sun.com/j2ee/1.4/docs/api/</link>
- </links>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jxr-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>javancss-maven-plugin</artifactId>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>taglist-maven-plugin</artifactId>
- <configuration>
- <tags>
- <tag>@FIXME</tag>
- <tag>@fixme</tag>
- <tag>FIXME</tag>
- <tag>fixme</tag>
- <tag>@TODO</tag>
- <tag>@todo</tag>
- <tag>TODO</tag>
- <tag>todo</tag>
- </tags>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-pmd-plugin</artifactId>
- <configuration>
- <linkXref>true</linkXref>
- <minimumTokens>100</minimumTokens>
- <targetJdk>1.4</targetJdk>
- </configuration>
- </plugin>
- </plugins>
- </reporting>
-
</project>
17 years, 6 months
Hibernate SVN: r11593 - trunk/sandbox/maven-poc.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2007-05-29 10:27:48 -0400 (Tue, 29 May 2007)
New Revision: 11593
Removed:
trunk/sandbox/maven-poc/Hibernate3/
Log:
already migrated back to trunk
17 years, 6 months
Hibernate SVN: r11592 - in trunk/Hibernate3: code and 1 other directory.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2007-05-29 10:13:16 -0400 (Tue, 29 May 2007)
New Revision: 11592
Added:
trunk/Hibernate3/code/eg/
Removed:
trunk/Hibernate3/eg/
Log:
split doc/code
Copied: trunk/Hibernate3/code/eg (from rev 11591, trunk/Hibernate3/eg)
17 years, 6 months
Hibernate SVN: r11591 - in trunk/Hibernate3: code and 1 other directory.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2007-05-29 10:12:26 -0400 (Tue, 29 May 2007)
New Revision: 11591
Added:
trunk/Hibernate3/code/testsuite/
Removed:
trunk/Hibernate3/testsuite/
Log:
split doc/code
Copied: trunk/Hibernate3/code/testsuite (from rev 11590, trunk/Hibernate3/testsuite)
17 years, 6 months
Hibernate SVN: r11590 - in trunk/Hibernate3: code and 1 other directory.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2007-05-29 10:12:14 -0400 (Tue, 29 May 2007)
New Revision: 11590
Added:
trunk/Hibernate3/code/testing/
Removed:
trunk/Hibernate3/testing/
Log:
split doc/code
Copied: trunk/Hibernate3/code/testing (from rev 11589, trunk/Hibernate3/testing)
17 years, 6 months
Hibernate SVN: r11589 - in trunk/Hibernate3: code and 1 other directory.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2007-05-29 10:12:02 -0400 (Tue, 29 May 2007)
New Revision: 11589
Added:
trunk/Hibernate3/code/jmx/
Removed:
trunk/Hibernate3/jmx/
Log:
split doc/code
Copied: trunk/Hibernate3/code/jmx (from rev 11588, trunk/Hibernate3/jmx)
17 years, 6 months
Hibernate SVN: r11588 - in trunk/Hibernate3: code and 1 other directory.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2007-05-29 10:11:51 -0400 (Tue, 29 May 2007)
New Revision: 11588
Added:
trunk/Hibernate3/code/core/
Removed:
trunk/Hibernate3/core/
Log:
split doc/code
Copied: trunk/Hibernate3/code/core (from rev 11587, trunk/Hibernate3/core)
17 years, 6 months
Hibernate SVN: r11587 - in trunk/Hibernate3: code and 1 other directory.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2007-05-29 10:11:38 -0400 (Tue, 29 May 2007)
New Revision: 11587
Added:
trunk/Hibernate3/code/connection-proxool/
Removed:
trunk/Hibernate3/connection-proxool/
Log:
split doc/code
Copied: trunk/Hibernate3/code/connection-proxool (from rev 11586, trunk/Hibernate3/connection-proxool)
17 years, 6 months
Hibernate SVN: r11586 - in trunk/Hibernate3: code and 1 other directory.
by hibernate-commits@lists.jboss.org
Author: steve.ebersole(a)jboss.com
Date: 2007-05-29 10:11:27 -0400 (Tue, 29 May 2007)
New Revision: 11586
Added:
trunk/Hibernate3/code/connection-c3p0/
Removed:
trunk/Hibernate3/connection-c3p0/
Log:
split doc/code
Copied: trunk/Hibernate3/code/connection-c3p0 (from rev 11585, trunk/Hibernate3/connection-c3p0)
17 years, 6 months