[jboss-maven2-commits] Repository SVN: r30787 - maven2/org/hibernate/hibernate-manual/3.5.0-Beta-2.

jboss-maven2-commits at lists.jboss.org jboss-maven2-commits at lists.jboss.org
Mon Nov 2 17:25:13 EST 2009


Author: steve.ebersole at jboss.com
Date: 2009-11-02 17:25:13 -0500 (Mon, 02 Nov 2009)
New Revision: 30787

Added:
   maven2/org/hibernate/hibernate-manual/3.5.0-Beta-2/hibernate-manual-3.5.0-Beta-2.pom
Log:
Wagon: Adding hibernate-manual-3.5.0-Beta-2.pom to repository

Added: maven2/org/hibernate/hibernate-manual/3.5.0-Beta-2/hibernate-manual-3.5.0-Beta-2.pom
===================================================================
--- maven2/org/hibernate/hibernate-manual/3.5.0-Beta-2/hibernate-manual-3.5.0-Beta-2.pom	                        (rev 0)
+++ maven2/org/hibernate/hibernate-manual/3.5.0-Beta-2/hibernate-manual-3.5.0-Beta-2.pom	2009-11-02 22:25:13 UTC (rev 30787)
@@ -0,0 +1,67 @@
+<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.5.0-Beta-2</version>
+        <relativePath>../../parent/pom.xml</relativePath>
+    </parent>
+    
+    <groupId>org.hibernate</groupId>
+    <artifactId>hibernate-manual</artifactId>
+    <packaging>jdocbook</packaging>
+
+    <name>Hibernate Manual</name>
+    <description>The Hibernate reference manual</description>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.jboss.maven.plugins</groupId>
+                <artifactId>maven-jdocbook-plugin</artifactId>
+
+                <executions>
+                    <execution>
+                        <!--
+                            here we are attaching the translate goal so that the translations are processed
+                            before compilation so that the transated XML is also transformed during
+                            generation
+                        -->
+                        <phase>process-resources</phase>
+                        <goals>
+                            <goal>translate</goal>
+                        </goals>
+                    </execution>
+                </executions>
+
+                <configuration>
+                    <sourceDocumentName>Hibernate_Reference.xml</sourceDocumentName>
+                    <masterTranslation>en-US</masterTranslation>
+                    <translations>
+                        <translation>es-ES</translation>
+                        <translation>fr-FR</translation>
+                        <translation>ja-JP</translation>
+                        <translation>ko-KR</translation>
+                        <translation>pt-BR</translation>
+                        <translation>zh-CN</translation>
+                    </translations>
+                    <imageResource>
+                        <directory>${basedir}/src/main/docbook/en-US</directory>
+                        <excludes>
+                            <exclude>*.xml</exclude>
+                            <exclude>**/*.xml</exclude>
+                            <exclude>*.zargo</exclude>
+                            <exclude>**/*.zargo</exclude>
+                        </excludes>
+                    </imageResource>
+                    <profiling>
+                        <enabled>true</enabled>
+                    </profiling>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>



More information about the jboss-maven2-commits mailing list