uploading separated parent poms

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12773 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2007-07-17 03:31:57 +00:00
parent be9c0da948
commit 79e5b784a1
22 changed files with 252 additions and 343 deletions

View File

@ -3,26 +3,26 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-code</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-ehcache</artifactId> <artifactId>hibernate-ehcache</artifactId>
<packaging>jar</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Hibernate Ehcache integration</name> <name>Hibernate Ehcache Integration</name>
<description>Integration of Hibernate with Ehcache</description> <description>Integration of Hibernate with Ehcache</description>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>${groupId}</groupId> <groupId>${groupId}</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>hibernate-core</artifactId>
<version>${hibernate.core.version}</version> <version>${version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>net.sf.ehcache</groupId> <groupId>net.sf.ehcache</groupId>
@ -31,4 +31,4 @@
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -3,26 +3,26 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-code</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-jbosscache</artifactId> <artifactId>hibernate-jbosscache</artifactId>
<packaging>jar</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Hibernate JBossCache integration</name> <name>Hibernate JBossCache Integration</name>
<description>Integration of Hibernate with JBossCache (based on JBossCache1.x APIs)</description> <description>Integration of Hibernate with JBossCache (based on JBossCache1.x APIs)</description>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>${groupId}</groupId> <groupId>${groupId}</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>hibernate-core</artifactId>
<version>${hibernate.core.version}</version> <version>${version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>jboss</groupId> <groupId>jboss</groupId>
@ -62,4 +62,4 @@
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -3,31 +3,31 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-code</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-jbosscache2</artifactId> <artifactId>hibernate-jbosscache2</artifactId>
<packaging>jar</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Hibernate JBossCache2.x integration</name> <name>Hibernate JBossCache2.x Integration</name>
<description>Integration of Hibernate with JBossCache (based on JBossCache2.x APIs)</description> <description>Integration of Hibernate with JBossCache (based on JBossCache2.x APIs)</description>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>${groupId}</groupId> <groupId>${groupId}</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>hibernate-core</artifactId>
<version>${hibernate.core.version}</version> <version>${version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>jboss</groupId> <groupId>jboss</groupId>
<artifactId>jboss-cache</artifactId> <artifactId>jboss-cache</artifactId>
<!-- does not work with idea plugin :( <!-- I'd prefer this, at least until we get a GA...
<version>[2.0.0.BETA2,)</version> <version>[2.0.0.BETA2,)</version>
--> -->
<version>2.0.0.BETA2</version> <version>2.0.0.BETA2</version>
@ -36,16 +36,6 @@
<build> <build>
<plugins> <plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-idea-plugin</artifactId>
<configuration>
<jdkName>1.5</jdkName>
<jdkLevel>5.0</jdkLevel>
<!-- why this isnt the default I have no clue -->
<linkModules>true</linkModules>
</configuration>
</plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
@ -57,4 +47,4 @@
</plugins> </plugins>
</build> </build>
</project> </project>

View File

@ -3,26 +3,26 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-code</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-oscache</artifactId> <artifactId>hibernate-oscache</artifactId>
<packaging>jar</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Hibernate OSCache integration</name> <name>Hibernate OSCache Integration</name>
<description>Integration of Hibernate with OSCache</description> <description>Integration of Hibernate with OSCache</description>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>${groupId}</groupId> <groupId>${groupId}</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>hibernate-core</artifactId>
<version>${hibernate.core.version}</version> <version>${version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>opensymphony</groupId> <groupId>opensymphony</groupId>
@ -31,4 +31,4 @@
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -3,26 +3,26 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-code</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-swarmcache</artifactId> <artifactId>hibernate-swarmcache</artifactId>
<packaging>jar</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Hibernate SwarmCache integration</name> <name>Hibernate SwarmCache Integration</name>
<description>Integration of Hibernate with SwarmCache</description> <description>Integration of Hibernate with SwarmCache</description>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>${groupId}</groupId> <groupId>${groupId}</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>hibernate-core</artifactId>
<version>${hibernate.core.version}</version> <version>${version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>swarmcache</groupId> <groupId>swarmcache</groupId>
@ -31,4 +31,4 @@
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -3,17 +3,17 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-code</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-c3p0</artifactId> <artifactId>hibernate-c3p0</artifactId>
<packaging>jar</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Hibernate C3P0 ConnectionProvider</name> <name>Hibernate C3P0 ConnectionProvider</name>
<description>C3P0-based implementation of the Hibernate ConnectionProvder contract</description> <description>C3P0-based implementation of the Hibernate ConnectionProvder contract</description>
@ -21,8 +21,8 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>${groupId}</groupId> <groupId>${groupId}</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>hibernate-core</artifactId>
<version>${hibernate.core.version}</version> <version>${version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>c3p0</groupId> <groupId>c3p0</groupId>
@ -31,4 +31,4 @@
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -3,17 +3,17 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-code</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-proxool</artifactId> <artifactId>hibernate-proxool</artifactId>
<packaging>jar</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Hibernate Proxool ConnectionProvider</name> <name>Hibernate Proxool ConnectionProvider</name>
<description>Proxool-based implementation of the Hibernate ConnectionProvder contract</description> <description>Proxool-based implementation of the Hibernate ConnectionProvder contract</description>
@ -21,8 +21,8 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>${groupId}</groupId> <groupId>${groupId}</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>hibernate-core</artifactId>
<version>${hibernate.core.version}</version> <version>${version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>proxool</groupId> <groupId>proxool</groupId>
@ -31,4 +31,4 @@
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -2,17 +2,17 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-code</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>hibernate-core</artifactId>
<version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>Hibernate Core</name> <name>Hibernate Core</name>
@ -32,7 +32,6 @@
<dependency> <dependency>
<groupId>commons-logging</groupId> <groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId> <artifactId>commons-logging</artifactId>
<version>1.0.4</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>dom4j</groupId> <groupId>dom4j</groupId>

View File

@ -3,60 +3,20 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId> <artifactId>hibernate-manual-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId> <artifactId>hibernate-manual-${translation}</artifactId>
<packaging>docbook</packaging> <version>3.3.0-SNAPSHOT</version>
<name>Hibernate Manual (${translation})</name> <packaging>jdocbook</packaging>
<build> <name>Hibernate Manual (${translation})</name>
<plugins> <description>The Hibernate reference manual (${translation})</description>
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jboss-docbook-plugin</artifactId>
<version>2.0-SNAPSHOT</version>
<extensions>true</extensions>
<dependencies>
<dependency>
<groupId>com.redhat</groupId>
<artifactId>docbook-xslt</artifactId>
<version>0.1</version>
</dependency>
</dependencies>
<configuration>
<sourceDocumentName>master.xml</sourceDocumentName>
<formats>
<format>
<formatName>pdf</formatName>
<stylesheetResource>/standard/fopdf.xsl</stylesheetResource>
<finalName>Hibernate_Reference.pdf</finalName>
</format>
<format>
<formatName>eclipse</formatName>
</format>
<format>
<formatName>html</formatName>
<stylesheetResource>/standard/html.xsl</stylesheetResource>
<finalName>index.html</finalName>
</format>
</formats>
<options>
<xincludeSupported>true</xincludeSupported>
<xmlTransformerType>saxon</xmlTransformerType>
<!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme -->
<!-- could also locate the docbook dependency and inspect its version... -->
<docbookVersion>1.72.0</docbookVersion>
</options>
</configuration>
</plugin>
</plugins>
</build>
<properties> <properties>
<translation>en-US</translation> <translation>en-US</translation>

View File

@ -3,17 +3,20 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId> <artifactId>hibernate-manual-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId> <artifactId>hibernate-manual-${translation}</artifactId>
<packaging>pom</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name> <name>Hibernate Manual (${translation})</name>
<description>The Hibernate reference manual (${translation})</description>
<properties> <properties>
<translation>es-ES</translation> <translation>es-ES</translation>

View File

@ -3,19 +3,23 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId> <artifactId>hibernate-manual-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId> <artifactId>hibernate-manual-${translation}</artifactId>
<packaging>pom</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name> <name>Hibernate Manual (${translation})</name>
<description>The Hibernate reference manual (${translation})</description>
<properties> <properties>
<translation>fr-FR</translation> <translation>fr-FR</translation>
</properties> </properties>
</project> </project>

View File

@ -3,17 +3,20 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId> <artifactId>hibernate-manual-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId> <artifactId>hibernate-manual-${translation}</artifactId>
<packaging>pom</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name> <name>Hibernate Manual (${translation})</name>
<description>The Hibernate reference manual (${translation})</description>
<properties> <properties>
<translation>ja-JP</translation> <translation>ja-JP</translation>

View File

@ -3,17 +3,20 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId> <artifactId>hibernate-manual-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId> <artifactId>hibernate-manual-${translation}</artifactId>
<packaging>pom</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name> <name>Hibernate Manual (${translation})</name>
<description>The Hibernate reference manual (${translation})</description>
<properties> <properties>
<translation>ko-KR</translation> <translation>ko-KR</translation>

View File

@ -3,86 +3,24 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-documentation</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId> <artifactId>hibernate-manual</artifactId>
<version>3.3.0-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Hibernate Manual</name>
<description>The Hibernate reference manual</description> <name>Hibernate Manual (aggregator)</name>
<description>The Hibernate reference manual (aggregator)</description>
<modules> <modules>
<module>en-US</module> <module>en-US</module>
<module>fr-FR</module> <module>fr-FR</module>
</modules> </modules>
<build>
<plugins>
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-jboss-docbook-plugin</artifactId>
<version>1.0</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-docbook-xslt</artifactId>
<version>0.1</version>
</dependency>
</dependencies>
<configuration>
<sourceDocumentName>master.xml</sourceDocumentName>
<formats>
<format>
<formatName>pdf</formatName>
<stylesheetResource>/standard/fopdf.xsl</stylesheetResource>
<finalName>hibernate_reference.pdf</finalName>
</format>
<format>
<formatName>html</formatName>
<stylesheetResource>/standard/html.xsl</stylesheetResource>
<finalName>index.html</finalName>
</format>
</formats>
<xincludeSupported>true</xincludeSupported>
<options>
<xincludeSupported>true</xincludeSupported>
<xmlTransformerType>saxon</xmlTransformerType>
<transformerParameters>
<property>
<name>custom.titlepage.img</name>
<value>${basedir}/src/main/resources/shared/images/hibernate_logo_a.png</value>
</property>
</transformerParameters>
</options>
</configuration>
</plugin>
</plugins>
</build>
<!-- report plugin is currently hosed
<reporting>
<plugins>
<plugin>
<groupId>org.jboss.maven.plugin</groupId>
<artifactId>jboss-docbook-plugin</artifactId>
</plugin>
</plugins>
</reporting>
-->
<properties>
<masterTranslation>en-US</masterTranslation>
</properties>
</project> </project>

View File

@ -3,17 +3,20 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId> <artifactId>hibernate-manual-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>.../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId> <artifactId>hibernate-manual-${translation}</artifactId>
<packaging>pom</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name> <name>Hibernate Manual (${translation})</name>
<description>The Hibernate reference manual (${translation})</description>
<properties> <properties>
<translation>pt-BR</translation> <translation>pt-BR</translation>

View File

@ -3,17 +3,20 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-manual</artifactId> <artifactId>hibernate-manual-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-manual-${translation}</artifactId> <artifactId>hibernate-manual-${translation}</artifactId>
<packaging>pom</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jdocbook</packaging>
<name>Hibernate Manual (${translation})</name> <name>Hibernate Manual (${translation})</name>
<description>The Hibernate reference manual (${translation})</description>
<properties> <properties>
<translation>zh-CN</translation> <translation>zh-CN</translation>

View File

@ -3,18 +3,19 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-documentation</artifactId> <artifactId>hibernate-documentation</artifactId>
<version>3.3.0-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Hibernate Core - Documentation</name> <name>Hibernate Core - Documentation</name>
<description>Grouping of Hibernate Core Project documentation modules</description> <description>Grouping of Hibernate Core Project documentation modules</description>
<modules> <modules>

View File

@ -3,17 +3,18 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-documentation</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-tutorial</artifactId> <artifactId>hibernate-tutorial</artifactId>
<version>3.3.0-SNAPSHOT</version>
<packaging>war</packaging> <packaging>war</packaging>
<name>Hibernate Tutorial</name> <name>Hibernate Tutorial</name>
<description>A tutorial project showcasing Hibernate usage</description> <description>A tutorial project showcasing Hibernate usage</description>
@ -21,7 +22,7 @@
<dependency> <dependency>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>hibernate-core</artifactId>
<version>${hibernate.core.version}</version> <version>${version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>javax.servlet</groupId> <groupId>javax.servlet</groupId>

View File

@ -5,16 +5,16 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<!-- todo : this module should eventually make its way over to documentation/tutorial --> <!-- todo : this module should eventually make its way over to documentation/tutorial -->
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-code</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-eg</artifactId> <artifactId>hibernate-eg</artifactId>
<version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>Hibernate Example</name> <name>Hibernate Example</name>
@ -24,7 +24,7 @@
<dependency> <dependency>
<groupId>${groupId}</groupId> <groupId>${groupId}</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>hibernate-core</artifactId>
<version>${hibernate.core.version}</version> <version>${version}</version>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -3,27 +3,31 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-code</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-jmx</artifactId> <artifactId>hibernate-jmx</artifactId>
<packaging>jar</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Hibernate JMX Module</name> <name>Hibernate JMX Module</name>
<description>Defines Hibernate JMX functionality</description> <description>Defines Hibernate JMX capabilities</description>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>${groupId}</groupId> <groupId>${groupId}</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>hibernate-core</artifactId>
<version>${hibernate.core.version}</version> <version>${version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -3,17 +3,17 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-code</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-testing</artifactId> <artifactId>hibernate-testing</artifactId>
<packaging>jar</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Hibernate Testing</name> <name>Hibernate Testing</name>
<description>Hibernate JUnit test utilities</description> <description>Hibernate JUnit test utilities</description>
@ -21,16 +21,15 @@
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>${groupId}</groupId> <groupId>${groupId}</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>hibernate-core</artifactId>
<version>${hibernate.core.version}</version> <version>${version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>junit</groupId> <groupId>junit</groupId>
<artifactId>junit</artifactId> <artifactId>junit</artifactId>
<version>3.8.1</version>
<!-- here we need to pull JUnit deps into compile scope... --> <!-- here we need to pull JUnit deps into compile scope... -->
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>

View File

@ -3,76 +3,80 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-code</artifactId> <artifactId>hibernate-core-parent</artifactId>
<version>3.3.0.beta1</version> <version>1</version>
<relativePath>../pom.xml</relativePath>
</parent> </parent>
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-testsuite</artifactId> <artifactId>hibernate-testsuite</artifactId>
<packaging>jar</packaging> <version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Hibernate Testsuite</name> <name>Hibernate Testsuite</name>
<description>The testsuite of Hibernate functionality</description> <description>The testsuite of Hibernate functionality</description>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>${groupId}</groupId> <groupId>junit</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>junit</artifactId>
<version>${hibernate.core.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>${groupId}</groupId> <groupId>commons-logging</groupId>
<artifactId>hibernate-testing</artifactId> <artifactId>commons-logging</artifactId>
<version>${hibernate.core.version}</version>
</dependency>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>hibernate-ehcache</artifactId>
<version>${hibernate.core.version}</version>
</dependency>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>hibernate-jbosscache</artifactId>
<version>${hibernate.core.version}</version>
</dependency>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>hibernate-oscache</artifactId>
<version>${hibernate.core.version}</version>
</dependency>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>hibernate-swarmcache</artifactId>
<version>${hibernate.core.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>log4j</groupId> <groupId>log4j</groupId>
<artifactId>log4j</artifactId> <artifactId>log4j</artifactId>
<version>1.2.11</version> </dependency>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>hibernate-core</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>hibernate-testing</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>
<!-- these are optional on core... :( --> <!-- these are optional on core... :( -->
<dependency> <dependency>
<groupId>javassist</groupId> <groupId>javassist</groupId>
<artifactId>javassist</artifactId> <artifactId>javassist</artifactId>
<version>3.4.GA</version> <version>3.4.GA</version>
<optional>true</optional>
</dependency> </dependency>
<dependency> <dependency>
<groupId>cglib</groupId> <groupId>cglib</groupId>
<artifactId>cglib</artifactId> <artifactId>cglib</artifactId>
<version>2.1_3</version> <version>2.1_3</version>
<optional>true</optional>
</dependency> </dependency>
<dependency> <dependency>
<groupId>asm</groupId> <groupId>asm</groupId>
<artifactId>asm-attrs</artifactId> <artifactId>asm-attrs</artifactId>
<version>1.5.3</version> <version>1.5.3</version>
<optional>true</optional> </dependency>
</dependency>
<!-- optional dom4j dependency; needed here for dom4j (de)serialization --> <!-- optional dom4j dependency; needed here for dom4j (de)serialization -->
<dependency> <dependency>
<groupId>jaxen</groupId> <groupId>jaxen</groupId>
@ -95,7 +99,20 @@
<directory>src/test/resources</directory> <directory>src/test/resources</directory>
</testResource> </testResource>
</testResources> </testResources>
<plugins> <plugins>
<plugin>
<groupId>org.jboss.maven.plugins</groupId>
<artifactId>maven-test-ext-plugin</artifactId>
<version>1.0.3</version>
<executions>
<execution>
<goals>
<goal>extend</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
@ -111,28 +128,9 @@
</plugins> </plugins>
</build> </build>
<profiles> <properties>
<profile> <test.extender.cfg>${basedir}/src/test/profile/hsqldb/hsqldb-env.xml</test.extender.cfg>
<id>hsqldb</id> <test.extender.env>hsqldb</test.extender.env>
<activation> </properties>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<testResources>
<testResource>
<filtering>false</filtering>
<directory>src/test/profile/hsqldb</directory>
</testResource>
</testResources>
</build>
<dependencies>
<dependency>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>1.8.0.2</version>
</dependency>
</dependencies>
</profile>
</profiles>
</project> </project>