[jboss-svn-commits] JBL Code SVN: r37779 - labs/jbosstm/trunk/txframework/framework.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Dec 5 10:54:33 EST 2011


Author: paul.robinson
Date: 2011-12-05 10:54:33 -0500 (Mon, 05 Dec 2011)
New Revision: 37779

Added:
   labs/jbosstm/trunk/txframework/framework/pom.xml
Modified:
   labs/jbosstm/trunk/txframework/framework/
Log:
Initial checkin


Property changes on: labs/jbosstm/trunk/txframework/framework
___________________________________________________________________
Added: svn:ignore
   + target
transaction.log


Added: labs/jbosstm/trunk/txframework/framework/pom.xml
===================================================================
--- labs/jbosstm/trunk/txframework/framework/pom.xml	                        (rev 0)
+++ labs/jbosstm/trunk/txframework/framework/pom.xml	2011-12-05 15:54:33 UTC (rev 37779)
@@ -0,0 +1,131 @@
+<?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">
+    <groupId>org.jboss.narayana.txframework</groupId>
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>txframework</artifactId>
+    <packaging>jar</packaging>
+    <name>txframework</name>
+    <description>txframework</description>
+    <version>5.0.0.M2-SNAPSHOT</version>
+    <properties>
+        <narayana.version>4.16.0.Beta1</narayana.version>
+        <arquillian.version>1.0.0.CR6</arquillian.version>
+        <jboss.version>7.1.0.Beta1</jboss.version>
+    </properties>
+
+    <dependencyManagement>
+        <dependencies>
+            <!-- Define the version of JBoss' Java EE 6 APIs we want to import. Any
+                   dependencies from org.jboss.spec will have their version defined by this
+                   BOM -->
+            <!-- JBoss distributes a complete set of Java EE 6 APIs including a Bill
+                   of Materials (BOM). A BOM specifies the versions of a "stack" (or a collection)
+                   of artifacts. We use this here so that we always get the correct versions
+                   of artifacts. Here we use the jboss-javaee-web-6.0 stack (you can read this
+                   as the JBoss stack of the Java EE Web Profile 6 APIs), and we use version
+                   2.0.0.Beta1 which is the latest release of the stack. You can actually use
+                   this stack with any version of JBoss AS that implements Java EE 6, not just
+                   JBoss AS 7! -->
+            <dependency>
+                <groupId>org.jboss.spec</groupId>
+                <artifactId>jboss-javaee-web-6.0</artifactId>
+                <version>2.0.0.CR1</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
+    <dependencies>
+        <!-- Import the CDI API, we use provided scope as the API is included in
+     JBoss AS 7 -->
+        <dependency>
+            <groupId>javax.enterprise</groupId>
+            <artifactId>cdi-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <!-- Import the qualifiers annotations -->
+        <dependency>
+            <groupId>javax.inject</groupId>
+            <artifactId>javax.inject</artifactId>
+            <version>1</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.8.1</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.arquillian.junit</groupId>
+            <artifactId>arquillian-junit-container</artifactId>
+            <version>${arquillian.version}</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.jboss.jbossts</groupId>
+            <artifactId>jbossxts-api</artifactId>
+            <version>${narayana.version}</version>
+            <scope>compile</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.jboss.logging</groupId>
+                    <artifactId>jboss-logging-spi</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.jbossts</groupId>
+            <artifactId>jbossjta</artifactId>
+            <version>${narayana.version}</version>
+            <scope>compile</scope>
+            <exclusions>
+                <exclusion>
+                    <groupId>org.jboss.logging</groupId>
+                    <artifactId>jboss-logging-spi</artifactId>
+                </exclusion>
+            </exclusions>
+        </dependency>
+    </dependencies>
+
+    <profiles>
+        <profile>
+            <!-- The default profile skips all tests, though you can tune it
+               to run just unit tests based on a custom pattern -->
+            <!-- Seperate profiles are provided for running all tests, including
+               Arquillian tests that execute in the specified container -->
+            <id>default</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <artifactId>maven-surefire-plugin</artifactId>
+                        <version>2.7.2</version>
+                        <configuration>
+                            <skip>false</skip>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+            <dependencies>
+                <dependency>
+                    <groupId>org.jboss.as</groupId>
+                    <artifactId>jboss-as-arquillian-container-remote</artifactId>
+                    <version>${jboss.version}</version>
+                    <scope>test</scope>
+                </dependency>
+            </dependencies>
+        </profile>
+    </profiles>
+
+</project>



More information about the jboss-svn-commits mailing list