[jboss-svn-commits] JBL Code SVN: r37734 - in labs/jbosstm/trunk/XTS/sar/tests: src and 3 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Nov 24 02:24:17 EST 2011


Author: zhfeng
Date: 2011-11-24 02:24:16 -0500 (Thu, 24 Nov 2011)
New Revision: 37734

Added:
   labs/jbosstm/trunk/XTS/sar/tests/pom.xml
   labs/jbosstm/trunk/XTS/sar/tests/src/main/
   labs/jbosstm/trunk/XTS/sar/tests/src/main/resources/
   labs/jbosstm/trunk/XTS/sar/tests/src/main/webapp/
   labs/jbosstm/trunk/XTS/sar/tests/src/main/webapp/WEB-INF/
   labs/jbosstm/trunk/XTS/sar/tests/src/main/webapp/WEB-INF/beans.xml
   labs/jbosstm/trunk/XTS/sar/tests/src/main/webapp/WEB-INF/classes/
   labs/jbosstm/trunk/XTS/sar/tests/src/main/webapp/WEB-INF/wsdl/
Removed:
   labs/jbosstm/trunk/XTS/sar/tests/arquillian/
Modified:
   labs/jbosstm/trunk/XTS/sar/tests/
Log:
JBTM-817 update to add xtstests.war


Property changes on: labs/jbosstm/trunk/XTS/sar/tests
___________________________________________________________________
Added: svn:ignore
   + target
.classpath
.project
.settings


Added: labs/jbosstm/trunk/XTS/sar/tests/pom.xml
===================================================================
--- labs/jbosstm/trunk/XTS/sar/tests/pom.xml	                        (rev 0)
+++ labs/jbosstm/trunk/XTS/sar/tests/pom.xml	2011-11-24 07:24:16 UTC (rev 37734)
@@ -0,0 +1,65 @@
+<?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.narayana.xts</groupId>
+		<artifactId>xts-all</artifactId>
+		<version>5.0.0.M2-SNAPSHOT</version>
+		<relativePath>../../pom.xml</relativePath>
+	</parent>
+	<modelVersion>4.0.0</modelVersion>
+	<artifactId>xtstest</artifactId>
+	<packaging>war</packaging>
+	<name>junit tests for xts crash recovery</name>
+	<description>junit tests for xts crash recovery</description>
+	<build>
+		<finalName>${project.artifactId}</finalName>
+		<sourceDirectory>src</sourceDirectory>
+		<plugins>
+			<plugin>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<version>2.3.1</version>
+				<configuration>
+					<source>1.6</source>
+					<target>1.6</target>
+				</configuration>
+			</plugin>
+			<plugin>
+				<artifactId>maven-war-plugin</artifactId>
+				<version>2.1.1</version>
+				<configuration>
+					<failOnMissingWebXml>false</failOnMissingWebXml>
+					<archive>
+						<manifestEntries>
+					   		<Dependencies>org.jboss.xts,org.jboss.ws.cxf.jbossws-cxf-client services export</Dependencies>
+						</manifestEntries>
+					</archive>
+					<webXml>
+						dd/WEB-INF/web.xml
+					</webXml>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+	<dependencies>
+		<dependency>
+			<groupId>org.jboss.narayana.xts</groupId>
+			<artifactId>jbossxts</artifactId>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.logging</groupId>
+			<artifactId>jboss-logging</artifactId>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.logging</groupId>
+			<artifactId>jboss-logging-processor</artifactId>
+			<scope>provided</scope>
+		</dependency>
+	</dependencies>
+</project>

Copied: labs/jbosstm/trunk/XTS/sar/tests/src/main/webapp/WEB-INF/beans.xml (from rev 37711, labs/jbosstm/trunk/XTS/sar/tests/arquillian/src/main/webapp/WEB-INF/beans.xml)
===================================================================
--- labs/jbosstm/trunk/XTS/sar/tests/src/main/webapp/WEB-INF/beans.xml	                        (rev 0)
+++ labs/jbosstm/trunk/XTS/sar/tests/src/main/webapp/WEB-INF/beans.xml	2011-11-24 07:24:16 UTC (rev 37734)
@@ -0,0 +1,18 @@
+  <!-- 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 -->
+<!-- Marker file indicating CDI should be enabled -->
+<beans xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+   xsi:schemaLocation="
+      http://java.sun.com/xml/ns/javaee 
+      http://java.sun.com/xml/ns/javaee/beans_1_0.xsd">
+</beans>
\ No newline at end of file



More information about the jboss-svn-commits mailing list