[jboss-svn-commits] JBL Code SVN: r37122 - labs/jbosstm/trunk/ArjunaJTA/examples/simple_maven_example.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Jun 23 09:55:37 EDT 2011


Author: tomjenkinson
Date: 2011-06-23 09:55:37 -0400 (Thu, 23 Jun 2011)
New Revision: 37122

Modified:
   labs/jbosstm/trunk/ArjunaJTA/examples/simple_maven_example/pom.xml
Log:
JBTM-854 updated to move the code into main

Modified: labs/jbosstm/trunk/ArjunaJTA/examples/simple_maven_example/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTA/examples/simple_maven_example/pom.xml	2011-06-23 13:23:11 UTC (rev 37121)
+++ labs/jbosstm/trunk/ArjunaJTA/examples/simple_maven_example/pom.xml	2011-06-23 13:55:37 UTC (rev 37122)
@@ -1,21 +1,18 @@
 <?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">
+<!-- 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.examples</groupId>
     <artifactId>jta-examples</artifactId>
@@ -33,12 +30,24 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-surefire-plugin</artifactId>
-        <!--
         <configuration>
           <workingDirectory>${build.directory}/surefire-working-directory</workingDirectory>
         </configuration>
-        -->
       </plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>exec-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>exec</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <workingDirectory>${build.directory}/exec-working-directory</workingDirectory>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
   <dependencies>
@@ -46,7 +55,6 @@
       <groupId>org.jboss.jbossts</groupId>
       <artifactId>jbossjta</artifactId>
       <version>4.15.1.Final</version>
-      <scope>test</scope>
       <exclusions>
         <exclusion>
           <groupId>org.jboss.logging</groupId>



More information about the jboss-svn-commits mailing list