[jboss-svn-commits] JBL Code SVN: r36990 - in labs/jbosstm/trunk: ArjunaCore and 16 other directories.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Wed May 11 09:11:15 EDT 2011
Author: tomjenkinson
Date: 2011-05-11 09:11:14 -0400 (Wed, 11 May 2011)
New Revision: 36990
Added:
labs/jbosstm/trunk/ArjunaCore/docs/failure_recovery_guide/pom.xml
labs/jbosstm/trunk/ArjunaJTA/docs/quick_start/pom.xml
labs/jbosstm/trunk/ArjunaJTS/docs/orbportability/pom.xml
labs/jbosstm/trunk/ArjunaJTS/docs/quick_start/pom.xml
labs/jbosstm/trunk/docs/failure_recovery_guide/pom.xml
labs/jbosstm/trunk/docs/pom.xml
labs/jbosstm/trunk/docs/release_notes/pom.xml
labs/jbosstm/trunk/docs/txbridge_guide/pom.xml
Modified:
labs/jbosstm/trunk/ArjunaCore/docs/pom.xml
labs/jbosstm/trunk/ArjunaCore/pom.xml
labs/jbosstm/trunk/ArjunaJTA/docs/pom.xml
labs/jbosstm/trunk/ArjunaJTA/pom.xml
labs/jbosstm/trunk/ArjunaJTS/docs/pom.xml
labs/jbosstm/trunk/ArjunaJTS/pom.xml
labs/jbosstm/trunk/XTS/pom.xml
labs/jbosstm/trunk/docs/development_guide/pom.xml
labs/jbosstm/trunk/docs/transactions_overview_guide/pom.xml
labs/jbosstm/trunk/pom.xml
Log:
updated to build the documentation using maven
Added: labs/jbosstm/trunk/ArjunaCore/docs/failure_recovery_guide/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/docs/failure_recovery_guide/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/docs/failure_recovery_guide/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- JBoss, Home of Professional Open Source Copyright 2008, Red Hat Middleware
+ LLC, and others contributors as indicated by the @authors tag. All rights
+ reserved. See the copyright.txt in the distribution for a full listing of
+ individual contributors. 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, v. 2.1. This program
+ is distributed in the hope that it will be useful, but WITHOUT A 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, v.2.1
+ along with this distribution; if not, write to the Free Software Foundation,
+ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -->
+<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/maven-v4_0_0.xsd">
+ <parent>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>narayana-parent</artifactId>
+ <version>4.15.0.M1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>arjunacore-fail-guide</artifactId>
+ <packaging>jar</packaging>
+ <build>
+ <outputDirectory>target/publican</outputDirectory>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.6</version>
+ <executions>
+ <execution>
+ <phase>compile</phase>
+ <configuration>
+ <target unless="skipPublican">
+ <exec dir="." executable="publican" failonerror="true">
+ <arg value="build"/>
+ <arg value="--langs=en-US"/>
+ <arg value="--formats=pdf"/>
+ <arg value="--config=publican.cfg"/>
+ </exec>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>**/*.pdf</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Modified: labs/jbosstm/trunk/ArjunaCore/docs/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/docs/pom.xml 2011-05-11 09:17:45 UTC (rev 36989)
+++ labs/jbosstm/trunk/ArjunaCore/docs/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -23,7 +23,7 @@
<packaging>pom</packaging>
<name>ArjunaCore Documentation</name>
<modules>
- <module>ArjunaCore_Development_Guide</module>
- <module>ArjunaCore_Installation_And_Administration_Guide</module>
+ <module>development_guide</module>
+ <module>failure_recovery_guide</module>
</modules>
</project>
Modified: labs/jbosstm/trunk/ArjunaCore/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/pom.xml 2011-05-11 09:17:45 UTC (rev 36989)
+++ labs/jbosstm/trunk/ArjunaCore/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -28,6 +28,7 @@
<module>txoj</module>
<module>arjunacore</module>
<module>docs</module>
+ <module>../docs</module>
<module>dist</module>
</modules>
</project>
Modified: labs/jbosstm/trunk/ArjunaJTA/docs/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTA/docs/pom.xml 2011-05-11 09:17:45 UTC (rev 36989)
+++ labs/jbosstm/trunk/ArjunaJTA/docs/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -23,7 +23,9 @@
<packaging>pom</packaging>
<name>JBossJTA Documentation</name>
<modules>
- <module>ArjunaTA_Development_Guide</module>
- <module>ArjunaTA_Installation_And_Administration_Guide</module>
+ <module>administration_guide</module>
+ <module>development_guide</module>
+ <module>installation_guide</module>
+ <module>quick_start</module>
</modules>
</project>
Added: labs/jbosstm/trunk/ArjunaJTA/docs/quick_start/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTA/docs/quick_start/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaJTA/docs/quick_start/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- JBoss, Home of Professional Open Source Copyright 2008, Red Hat Middleware
+ LLC, and others contributors as indicated by the @authors tag. All rights
+ reserved. See the copyright.txt in the distribution for a full listing of
+ individual contributors. 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, v. 2.1. This program
+ is distributed in the hope that it will be useful, but WITHOUT A 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, v.2.1
+ along with this distribution; if not, write to the Free Software Foundation,
+ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -->
+<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/maven-v4_0_0.xsd">
+ <parent>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>narayana-parent</artifactId>
+ <version>4.15.0.M1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>jbossjta-quickstart-guide</artifactId>
+ <packaging>jar</packaging>
+ <build>
+ <outputDirectory>target/publican</outputDirectory>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.6</version>
+ <executions>
+ <execution>
+ <phase>compile</phase>
+ <configuration>
+ <target unless="skipPublican">
+ <exec dir="." executable="publican" failonerror="true">
+ <arg value="build"/>
+ <arg value="--langs=en-US"/>
+ <arg value="--formats=pdf"/>
+ <arg value="--config=publican.cfg"/>
+ </exec>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>**/*.pdf</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Modified: labs/jbosstm/trunk/ArjunaJTA/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTA/pom.xml 2011-05-11 09:17:45 UTC (rev 36989)
+++ labs/jbosstm/trunk/ArjunaJTA/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -29,6 +29,7 @@
<module>jdbc</module>
<module>jbossjta</module>
<module>docs</module>
+ <module>../docs</module>
<module>integration</module>
<module>dist</module>
</modules>
Added: labs/jbosstm/trunk/ArjunaJTS/docs/orbportability/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTS/docs/orbportability/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaJTS/docs/orbportability/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- JBoss, Home of Professional Open Source Copyright 2008, Red Hat Middleware
+ LLC, and others contributors as indicated by the @authors tag. All rights
+ reserved. See the copyright.txt in the distribution for a full listing of
+ individual contributors. 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, v. 2.1. This program
+ is distributed in the hope that it will be useful, but WITHOUT A 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, v.2.1
+ along with this distribution; if not, write to the Free Software Foundation,
+ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -->
+<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/maven-v4_0_0.xsd">
+ <parent>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>narayana-parent</artifactId>
+ <version>4.15.0.M1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>jbossts-orb-guide</artifactId>
+ <packaging>jar</packaging>
+ <build>
+ <outputDirectory>target/publican</outputDirectory>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.6</version>
+ <executions>
+ <execution>
+ <phase>compile</phase>
+ <configuration>
+ <target unless="skipPublican">
+ <exec dir="." executable="publican" failonerror="true">
+ <arg value="build"/>
+ <arg value="--langs=en-US"/>
+ <arg value="--formats=pdf"/>
+ <arg value="--config=publican.cfg"/>
+ </exec>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>**/*.pdf</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Modified: labs/jbosstm/trunk/ArjunaJTS/docs/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTS/docs/pom.xml 2011-05-11 09:17:45 UTC (rev 36989)
+++ labs/jbosstm/trunk/ArjunaJTS/docs/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -23,7 +23,9 @@
<packaging>pom</packaging>
<name>JBossJTS Documentation</name>
<modules>
- <module>ArjunaJTS_Development_Guide</module>
- <module>ArjunaJTS_Installation_And_Administration_Guide</module>
+ <module>administration_guide</module>
+ <module>development_guide</module>
+ <module>orbportability</module>
+ <module>quick_start</module>
</modules>
</project>
Added: labs/jbosstm/trunk/ArjunaJTS/docs/quick_start/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTS/docs/quick_start/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaJTS/docs/quick_start/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- JBoss, Home of Professional Open Source Copyright 2008, Red Hat Middleware
+ LLC, and others contributors as indicated by the @authors tag. All rights
+ reserved. See the copyright.txt in the distribution for a full listing of
+ individual contributors. 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, v. 2.1. This program
+ is distributed in the hope that it will be useful, but WITHOUT A 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, v.2.1
+ along with this distribution; if not, write to the Free Software Foundation,
+ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -->
+<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/maven-v4_0_0.xsd">
+ <parent>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>narayana-parent</artifactId>
+ <version>4.15.0.M1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>jbossts-quickstart-guide</artifactId>
+ <packaging>jar</packaging>
+ <build>
+ <outputDirectory>target/publican</outputDirectory>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.6</version>
+ <executions>
+ <execution>
+ <phase>compile</phase>
+ <configuration>
+ <target unless="skipPublican">
+ <exec dir="." executable="publican" failonerror="true">
+ <arg value="build"/>
+ <arg value="--langs=en-US"/>
+ <arg value="--formats=pdf"/>
+ <arg value="--config=publican.cfg"/>
+ </exec>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>**/*.pdf</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Modified: labs/jbosstm/trunk/ArjunaJTS/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTS/pom.xml 2011-05-11 09:17:45 UTC (rev 36989)
+++ labs/jbosstm/trunk/ArjunaJTS/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -35,6 +35,7 @@
<module>integration</module>
<module>trailmap</module>
<module>docs</module>
+ <module>../docs</module>
<module>../rhq-plugin</module>
<module>dist</module>
</modules>
Modified: labs/jbosstm/trunk/XTS/pom.xml
===================================================================
--- labs/jbosstm/trunk/XTS/pom.xml 2011-05-11 09:17:45 UTC (rev 36989)
+++ labs/jbosstm/trunk/XTS/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -31,6 +31,7 @@
<module>sar</module>
<module>demo</module>
<module>docs</module>
+ <module>../docs</module>
<module>jbossxts-api</module>
<module>localjunit</module>
<module>dist</module>
Modified: labs/jbosstm/trunk/docs/development_guide/pom.xml
===================================================================
--- labs/jbosstm/trunk/docs/development_guide/pom.xml 2011-05-11 09:17:45 UTC (rev 36989)
+++ labs/jbosstm/trunk/docs/development_guide/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -18,7 +18,7 @@
<version>4.15.0.M1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
- <artifactId>dev-guide</artifactId>
+ <artifactId>development-guide</artifactId>
<packaging>jar</packaging>
<build>
<outputDirectory>target/publican</outputDirectory>
Added: labs/jbosstm/trunk/docs/failure_recovery_guide/pom.xml
===================================================================
--- labs/jbosstm/trunk/docs/failure_recovery_guide/pom.xml (rev 0)
+++ labs/jbosstm/trunk/docs/failure_recovery_guide/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- JBoss, Home of Professional Open Source Copyright 2008, Red Hat Middleware
+ LLC, and others contributors as indicated by the @authors tag. All rights
+ reserved. See the copyright.txt in the distribution for a full listing of
+ individual contributors. 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, v. 2.1. This program
+ is distributed in the hope that it will be useful, but WITHOUT A 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, v.2.1
+ along with this distribution; if not, write to the Free Software Foundation,
+ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -->
+<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/maven-v4_0_0.xsd">
+ <parent>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>narayana-parent</artifactId>
+ <version>4.15.0.M1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>failure-recovery-guide</artifactId>
+ <packaging>jar</packaging>
+ <build>
+ <outputDirectory>target/publican</outputDirectory>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.6</version>
+ <executions>
+ <execution>
+ <phase>compile</phase>
+ <configuration>
+ <target unless="skipPublican">
+ <exec dir="." executable="publican" failonerror="true">
+ <arg value="build"/>
+ <arg value="--langs=en-US"/>
+ <arg value="--formats=pdf"/>
+ <arg value="--config=publican.cfg"/>
+ </exec>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>**/*.pdf</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: labs/jbosstm/trunk/docs/pom.xml
===================================================================
--- labs/jbosstm/trunk/docs/pom.xml (rev 0)
+++ labs/jbosstm/trunk/docs/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -0,0 +1,31 @@
+<?xml version="1.0"?>
+<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/maven-v4_0_0.xsd">
+ <!-- JBoss, Home of Professional Open Source Copyright 2009, Red Hat Middleware
+ LLC, and individual contributors as indicated by the @author tags. See the
+ copyright.txt in the distribution for a full listing of individual contributors.
+ 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, v. 2.1. This program is distributed in the hope that
+ it will be useful, but WITHOUT A 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, v.2.1 along with this distribution;
+ if not, write to the Free Software Foundation, Inc., 51 Franklin Street,
+ Fifth Floor, Boston, MA 02110-1301, USA. (C) 2009, @author JBoss Inc. (jonathan.halliday at redhat.com) -->
+ <parent>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>narayana-parent</artifactId>
+ <version>4.15.0.M1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>common-docs</artifactId>
+ <packaging>pom</packaging>
+ <modules>
+ <module>development_guide</module>
+ <module>failure_recovery_guide</module>
+ <module>release_notes</module>
+ <module>transactions_overview_guide</module>
+ <module>txbridge_guide</module>
+ </modules>
+</project>
Added: labs/jbosstm/trunk/docs/release_notes/pom.xml
===================================================================
--- labs/jbosstm/trunk/docs/release_notes/pom.xml (rev 0)
+++ labs/jbosstm/trunk/docs/release_notes/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- JBoss, Home of Professional Open Source Copyright 2008, Red Hat Middleware
+ LLC, and others contributors as indicated by the @authors tag. All rights
+ reserved. See the copyright.txt in the distribution for a full listing of
+ individual contributors. 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, v. 2.1. This program
+ is distributed in the hope that it will be useful, but WITHOUT A 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, v.2.1
+ along with this distribution; if not, write to the Free Software Foundation,
+ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -->
+<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/maven-v4_0_0.xsd">
+ <parent>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>narayana-parent</artifactId>
+ <version>4.15.0.M1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>release-notes</artifactId>
+ <packaging>jar</packaging>
+ <build>
+ <outputDirectory>target/publican</outputDirectory>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.6</version>
+ <executions>
+ <execution>
+ <phase>compile</phase>
+ <configuration>
+ <target unless="skipPublican">
+ <exec dir="." executable="publican" failonerror="true">
+ <arg value="build"/>
+ <arg value="--langs=en-US"/>
+ <arg value="--formats=pdf"/>
+ <arg value="--config=publican.cfg"/>
+ </exec>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>**/*.pdf</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Modified: labs/jbosstm/trunk/docs/transactions_overview_guide/pom.xml
===================================================================
--- labs/jbosstm/trunk/docs/transactions_overview_guide/pom.xml 2011-05-11 09:17:45 UTC (rev 36989)
+++ labs/jbosstm/trunk/docs/transactions_overview_guide/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -18,8 +18,7 @@
<version>4.15.0.M1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
- <artifactId>xts-guide</artifactId>
- <name>XTS Administration and Development Guide</name>
+ <artifactId>transactions-overview-guide</artifactId>
<packaging>jar</packaging>
<build>
<outputDirectory>target/publican</outputDirectory>
Added: labs/jbosstm/trunk/docs/txbridge_guide/pom.xml
===================================================================
--- labs/jbosstm/trunk/docs/txbridge_guide/pom.xml (rev 0)
+++ labs/jbosstm/trunk/docs/txbridge_guide/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- JBoss, Home of Professional Open Source Copyright 2008, Red Hat Middleware
+ LLC, and others contributors as indicated by the @authors tag. All rights
+ reserved. See the copyright.txt in the distribution for a full listing of
+ individual contributors. 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, v. 2.1. This program
+ is distributed in the hope that it will be useful, but WITHOUT A 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, v.2.1
+ along with this distribution; if not, write to the Free Software Foundation,
+ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -->
+<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/maven-v4_0_0.xsd">
+ <parent>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>narayana-parent</artifactId>
+ <version>4.15.0.M1-SNAPSHOT</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>txbridge-guide</artifactId>
+ <packaging>jar</packaging>
+ <build>
+ <outputDirectory>target/publican</outputDirectory>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.6</version>
+ <executions>
+ <execution>
+ <phase>compile</phase>
+ <configuration>
+ <target unless="skipPublican">
+ <exec dir="." executable="publican" failonerror="true">
+ <arg value="build"/>
+ <arg value="--langs=en-US"/>
+ <arg value="--formats=pdf"/>
+ <arg value="--config=publican.cfg"/>
+ </exec>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>**/*.pdf</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Modified: labs/jbosstm/trunk/pom.xml
===================================================================
--- labs/jbosstm/trunk/pom.xml 2011-05-11 09:17:45 UTC (rev 36989)
+++ labs/jbosstm/trunk/pom.xml 2011-05-11 13:11:14 UTC (rev 36990)
@@ -42,6 +42,7 @@
<module>ArjunaJTS/integration</module>
<module>ArjunaJTS/trailmap</module>
<module>ArjunaJTS/docs</module>
+ <module>docs</module>
<module>rhq-plugin</module>
<module>XTS</module>
<module>ArjunaJTS/dist</module>
More information about the jboss-svn-commits
mailing list