2010-08-11 15:18:05 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
~ Hibernate, Relational Persistence for Idiomatic Java
|
|
|
|
~
|
|
|
|
~ Copyright (c) 2010, Red Hat Inc. or third-party contributors as
|
|
|
|
~ indicated by the @author tags or express copyright attribution
|
|
|
|
~ statements applied by the authors. All third-party contributions are
|
|
|
|
~ distributed under license by Red Hat Inc.
|
|
|
|
~
|
|
|
|
~ This copyrighted material is made available to anyone wishing to use, modify,
|
|
|
|
~ copy, or redistribute it subject to the terms and conditions of the GNU
|
|
|
|
~ Lesser General Public License, as published by the Free Software Foundation.
|
|
|
|
~
|
|
|
|
~ This program is distributed in the hope that it will be useful,
|
|
|
|
~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
|
|
|
|
~ for more details.
|
|
|
|
~
|
|
|
|
~ You should have received a copy of the GNU Lesser General Public License
|
|
|
|
~ along with this distribution; if not, write to:
|
|
|
|
~ Free Software Foundation, Inc.
|
|
|
|
~ 51 Franklin Street, Fifth Floor
|
|
|
|
~ Boston, MA 02110-1301 USA
|
|
|
|
-->
|
2010-08-18 14:46:58 -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">
|
2010-08-11 15:18:05 -04:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-parent</artifactId>
|
2010-09-29 16:56:44 -04:00
|
|
|
<version>3.6.0-SNAPSHOT</version>
|
2010-08-11 15:18:05 -04:00
|
|
|
<relativePath>../../parent/pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>devguide</artifactId>
|
|
|
|
<packaging>jdocbook</packaging>
|
|
|
|
|
2010-08-15 11:51:53 -04:00
|
|
|
<name>Hibernate Developer Guide</name>
|
|
|
|
<description>A guide for developers using Hibernate</description>
|
|
|
|
|
2010-08-11 15:18:05 -04:00
|
|
|
<properties>
|
|
|
|
<!-- Skip artifact deployment -->
|
|
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<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 translated XML is also transformed during
|
|
|
|
generation
|
|
|
|
-->
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>translate</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
|
|
|
|
<configuration>
|
2010-08-15 11:51:53 -04:00
|
|
|
<sourceDocumentName>Hibernate_Developer_Guide.xml</sourceDocumentName>
|
2010-08-11 15:18:05 -04:00
|
|
|
<masterTranslation>en-US</masterTranslation>
|
|
|
|
<translations>
|
2010-08-15 11:51:53 -04:00
|
|
|
<!--
|
2010-08-11 15:18:05 -04:00
|
|
|
<translation>de-DE</translation>
|
|
|
|
<translation>es-ES</translation>
|
|
|
|
<translation>fr-FR</translation>
|
|
|
|
<translation>ja-JP</translation>
|
2010-08-15 11:51:53 -04:00
|
|
|
<translation>ko-KR</translation>
|
2010-08-11 15:18:05 -04:00
|
|
|
<translation>pt-BR</translation>
|
|
|
|
<translation>zh-CN</translation>
|
2010-08-15 11:51:53 -04:00
|
|
|
-->
|
2010-08-11 15:18:05 -04:00
|
|
|
</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>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2010-08-18 14:46:58 -04:00
|
|
|
</project>
|