2010-02-10 14:17:55 -05:00
|
|
|
<?xml version="1.0"?>
|
2008-04-28 11:57:47 -04:00
|
|
|
<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">
|
2007-06-29 15:23:53 -04:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2008-04-21 20:55:03 -04:00
|
|
|
|
2007-06-29 15:23:53 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.hibernate</groupId>
|
2008-04-21 20:55:03 -04:00
|
|
|
<artifactId>hibernate-parent</artifactId>
|
2010-02-10 14:42:49 -05:00
|
|
|
<version>3.5.0-SNAPSHOT</version>
|
2008-04-21 20:55:03 -04:00
|
|
|
<relativePath>../../parent/pom.xml</relativePath>
|
2007-06-29 15:23:53 -04:00
|
|
|
</parent>
|
2007-07-16 23:31:57 -04:00
|
|
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
2007-06-29 15:23:53 -04:00
|
|
|
<artifactId>hibernate-manual</artifactId>
|
2007-11-01 16:52:41 -04:00
|
|
|
<packaging>jdocbook</packaging>
|
2007-07-16 23:31:57 -04:00
|
|
|
|
2007-11-01 16:52:41 -04:00
|
|
|
<name>Hibernate Manual</name>
|
|
|
|
<description>The Hibernate reference manual</description>
|
2007-06-29 15:23:53 -04:00
|
|
|
|
2007-11-01 16:52:41 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jboss.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jdocbook-plugin</artifactId>
|
2009-06-23 02:16:45 -04:00
|
|
|
|
2008-02-18 14:48:51 -05:00
|
|
|
<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>
|
2009-05-11 17:13:36 -04:00
|
|
|
|
2007-11-01 16:52:41 -04:00
|
|
|
<configuration>
|
2010-02-11 02:04:06 -05:00
|
|
|
<sourceDocumentName>HIBERNATE_-_Relational_Persistence_for_Idiomatic_Java.xml</sourceDocumentName>
|
2007-11-01 16:52:41 -04:00
|
|
|
<masterTranslation>en-US</masterTranslation>
|
|
|
|
<translations>
|
2010-02-14 20:32:56 -05:00
|
|
|
<translation>de-DE</translation>
|
2007-11-01 16:52:41 -04:00
|
|
|
<translation>es-ES</translation>
|
|
|
|
<translation>fr-FR</translation>
|
|
|
|
<translation>ja-JP</translation>
|
2010-02-11 02:04:06 -05:00
|
|
|
<!-- <translation>ko-KR</translation> -->
|
2007-11-01 16:52:41 -04:00
|
|
|
<translation>pt-BR</translation>
|
|
|
|
<translation>zh-CN</translation>
|
|
|
|
</translations>
|
|
|
|
<imageResource>
|
2008-02-18 14:48:51 -05:00
|
|
|
<directory>${basedir}/src/main/docbook/en-US</directory>
|
2007-11-01 16:52:41 -04:00
|
|
|
<excludes>
|
|
|
|
<exclude>*.xml</exclude>
|
|
|
|
<exclude>**/*.xml</exclude>
|
|
|
|
<exclude>*.zargo</exclude>
|
|
|
|
<exclude>**/*.zargo</exclude>
|
|
|
|
</excludes>
|
|
|
|
</imageResource>
|
2009-06-23 02:16:45 -04:00
|
|
|
<profiling>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</profiling>
|
2007-11-01 16:52:41 -04:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2007-06-29 15:23:53 -04:00
|
|
|
|
2009-02-27 23:45:24 -05:00
|
|
|
</project>
|