[jboss-svn-commits] JBL Code SVN: r36813 - in labs/jbosstm/trunk/XTS/docs: htdocs and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Mar 15 13:14:03 EDT 2011


Author: tomjenkinson
Date: 2011-03-15 13:14:03 -0400 (Tue, 15 Mar 2011)
New Revision: 36813

Added:
   labs/jbosstm/trunk/XTS/docs/htdocs/
   labs/jbosstm/trunk/XTS/docs/htdocs/pom.xml
Log:
JBTM-574 first cut of XTS poms

Added: labs/jbosstm/trunk/XTS/docs/htdocs/pom.xml
===================================================================
--- labs/jbosstm/trunk/XTS/docs/htdocs/pom.xml	                        (rev 0)
+++ labs/jbosstm/trunk/XTS/docs/htdocs/pom.xml	2011-03-15 17:14:03 UTC (rev 36813)
@@ -0,0 +1,237 @@
+<?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>htdocs</artifactId>
+	<packaging>jar</packaging>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>buildnumber-maven-plugin</artifactId>
+				<version>1.0-beta-4</version>
+				<executions>
+					<execution>
+						<phase>validate</phase>
+						<goals>
+							<goal>create</goal>
+						</goals>
+					</execution>
+				</executions>
+				<configuration>
+					<doCheck>true</doCheck>
+					<doUpdate>false</doUpdate>
+					<scmBranchPropertyName>buildScmBranch</scmBranchPropertyName>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-jar-plugin</artifactId>
+				<configuration>
+					<archive>
+						<manifestEntries>
+							<arjuna-scm-revision>${buildScmBranch} (revision: ${buildNumber})</arjuna-scm-revision>
+							<arjuna-properties-file>jbossts-properties.xml</arjuna-properties-file>
+							<arjuna-builder>JBoss Inc. [${user.name}] ${os.name} ${os.version} ${buildproperty.date}</arjuna-builder>
+						</manifestEntries>
+					</archive>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>attach-javadocs</id>
+						<goals>
+							<goal>jar</goal>
+						</goals>
+					</execution>
+				</executions>
+				<configuration>
+					<excludePackageNames>*.internal.*</excludePackageNames>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>build-helper-maven-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>add-source</id>
+						<phase>generate-sources</phase>
+						<goals>
+							<goal>add-source</goal>
+						</goals>
+						<configuration>
+							<sources>
+								<source>../../common/classes</source>
+								<source>../../ArjunaCore/arjuna/classes</source>
+								<source>../../ArjunaCore/txoj/classes</source>
+								<source>../../ArjunaCore/tsmx/classes</source>
+								<source>../../ArjunaCore/tsmx/bin</source>
+								<source>../../ArjunaJTA/jta/classes</source>
+								<source>../../ArjunaJTA/jdbc/classes</source>
+								<source>../orbportability/classes</source>
+								<source>../jts/classes</source>
+								<source>../jts/services/classes</source>
+								<source>../jtax/classes</source>
+							</sources>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<includes>
+						<include>com/arjuna/ats/jts/services/**/*.java</include>
+						<include>com/arjuna/ats/internal/tsmx/**/*.java</include>
+					</includes>
+				</configuration>
+				<executions>
+					<execution>
+						<id>comp</id>
+						<phase>compile</phase>
+						<goals></goals>
+						<configuration>
+							<excludes>
+								<exclude>**/*.*</exclude>
+							</excludes>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-shade-plugin</artifactId>
+				<version>1.4</version>
+				<executions>
+					<execution>
+						<phase>package</phase>
+						<goals>
+							<goal>shade</goal>
+						</goals>
+						<configuration>
+							<artifactSet>
+								<includes>
+									<include>org.jboss.jbossts:common</include>
+									<include>org.jboss.jbossts:arjuna</include>
+									<include>org.jboss.jbossts:tsmx-tools</include>
+									<include>org.jboss.jbossts:tsmx-jmxbrowser</include>
+									<include>org.jboss.jbossts:osbv-defaults</include>
+									<include>org.jboss.jbossts:tsmx-perfgraph</include>
+									<include>org.jboss.jbossts:txoj</include>
+									<include>org.jboss.jbossts:jta</include>
+									<include>org.jboss.jbossts:jdbc</include>
+									<include>org.jboss.jbossts:orbportability</include>
+									<include>org.jboss.jbossts:jts</include>
+									<include>org.jboss.jbossts:jtax</include>
+								</includes>
+							</artifactSet>
+<filters>
+  <filter>
+    <artifact>org.jboss.jbossts:tsmx-jmxbrowser</artifact>
+    <excludes>
+      <exclude>**/tools.properties</exclude>
+      <exclude>**/*.gif</exclude>
+    </excludes>
+  </filter>
+  <filter>
+    <artifact>org.jboss.jbossts:tsmx-perfgraph</artifact>
+    <excludes>
+      <exclude>**/tools.properties</exclude>
+      <exclude>**/*.gif</exclude>
+    </excludes>
+  </filter>
+  <filter>
+    <artifact>org.jboss.jbossts:tsmx-tools</artifact>
+    <excludes>
+      <exclude>**/tools.properties</exclude>
+      <exclude>**/*.gif</exclude>
+    </excludes>
+  </filter>
+</filters>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.jboss.jbossts</groupId>
+			<artifactId>common</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.jbossts</groupId>
+			<artifactId>arjuna</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.jbossts</groupId>
+			<artifactId>tsmx-tools</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.jbossts</groupId>
+			<artifactId>tsmx-jmxbrowser</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.jbossts</groupId>
+			<artifactId>osbv-defaults</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.jbossts</groupId>
+			<artifactId>tsmx-perfgraph</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.jbossts</groupId>
+			<artifactId>txoj</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.jbossts</groupId>
+			<artifactId>jta</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.jbossts</groupId>
+			<artifactId>jdbc</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.jbossts</groupId>
+			<artifactId>orbportability</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.jbossts</groupId>
+			<artifactId>jts</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.jbossts</groupId>
+			<artifactId>jtax</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>tanukisoft</groupId>
+			<artifactId>wrapper</artifactId>
+			<version>3.2.3</version>
+		</dependency>
+	</dependencies>
+
+</project>



More information about the jboss-svn-commits mailing list