[jboss-svn-commits] JBL Code SVN: r36602 - in labs/jbosstm/trunk: ArjunaCore and 23 other directories.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Tue Feb 15 10:37:56 EST 2011
Author: tomjenkinson
Date: 2011-02-15 10:37:54 -0500 (Tue, 15 Feb 2011)
New Revision: 36602
Added:
labs/jbosstm/trunk/ArjunaCore/arjuna/pom.xml
labs/jbosstm/trunk/ArjunaCore/arjuna/services/pom.xml
labs/jbosstm/trunk/ArjunaCore/docs/ArjunaCore_Development_Guide/pom.xml
labs/jbosstm/trunk/ArjunaCore/pom.xml
labs/jbosstm/trunk/ArjunaCore/tsmx/etc/jmxbrowser/META-INF/
labs/jbosstm/trunk/ArjunaCore/tsmx/etc/jmxbrowser/META-INF/tools.properties
labs/jbosstm/trunk/ArjunaCore/tsmx/etc/objectstorebrowser/META-INF/
labs/jbosstm/trunk/ArjunaCore/tsmx/etc/objectstorebrowser/META-INF/tools.properties
labs/jbosstm/trunk/ArjunaCore/tsmx/etc/perfgraph/META-INF/
labs/jbosstm/trunk/ArjunaCore/tsmx/etc/perfgraph/META-INF/tools.properties
labs/jbosstm/trunk/ArjunaCore/tsmx/jmxbrowser/
labs/jbosstm/trunk/ArjunaCore/tsmx/jmxbrowser/pom.xml
labs/jbosstm/trunk/ArjunaCore/tsmx/objectstorebrowser/
labs/jbosstm/trunk/ArjunaCore/tsmx/objectstorebrowser/pom.xml
labs/jbosstm/trunk/ArjunaCore/tsmx/osbv-defaults/
labs/jbosstm/trunk/ArjunaCore/tsmx/osbv-defaults/pom.xml
labs/jbosstm/trunk/ArjunaCore/tsmx/perfgraph/
labs/jbosstm/trunk/ArjunaCore/tsmx/perfgraph/pom.xml
labs/jbosstm/trunk/ArjunaCore/tsmx/pom.xml
labs/jbosstm/trunk/ArjunaCore/tsmx/tools/
labs/jbosstm/trunk/ArjunaCore/tsmx/tools/pom.xml
labs/jbosstm/trunk/ArjunaCore/txoj/pom.xml
labs/jbosstm/trunk/ArjunaJTS/jtax/pom.xml
labs/jbosstm/trunk/ArjunaJTS/jts/pom.xml
labs/jbosstm/trunk/ArjunaJTS/orbportability/pom.xml
labs/jbosstm/trunk/common/pom.xml
labs/jbosstm/trunk/narayana-build/
labs/jbosstm/trunk/narayana-build/common/
labs/jbosstm/trunk/narayana-build/common/pom.xml
labs/jbosstm/trunk/narayana-build/pom.xml
labs/jbosstm/trunk/qa/tests/pom.xml
Removed:
labs/jbosstm/trunk/ArjunaCore/tsmx/etc/jmxbrowser/tools.properties
labs/jbosstm/trunk/ArjunaCore/tsmx/etc/objectstorebrowser/tools.properties
labs/jbosstm/trunk/ArjunaCore/tsmx/etc/perfgraph/tools.properties
Modified:
labs/jbosstm/trunk/ArjunaCore/tsmx/build.xml
Log:
JBTM-574 first cut on maven poms
Added: labs/jbosstm/trunk/ArjunaCore/arjuna/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/arjuna/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/arjuna/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,145 @@
+<?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-build-common</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>arjuna</artifactId>
+ <name>ArjunaCore arjuna module</name>
+ <packaging>jar</packaging>
+
+ <build>
+ <sourceDirectory>classes</sourceDirectory>
+ <resources>
+ <resource>
+ <directory>etc</directory>
+ </resource>
+ </resources>
+ <testResources>
+ <testResource>
+ <directory>etc</directory>
+ </testResource>
+ <testResource>
+ <directory>../</directory>
+ <includes>
+ <include>jbossts-properties.xml</include>
+ </includes>
+ </testResource>
+ </testResources>
+
+
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>add-test-source</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>add-test-source</goal>
+ </goals>
+ <configuration>
+ <sources>
+ <source>${basedir}/tests</source>
+ <source>${basedir}/../../common/tests/com/arjuna/common/tests/simple</source>
+ </sources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <!-- NONE REPEATABLE -->
+ <exclude>**/ObjectStoreTest.java</exclude>
+ <!-- End of NONE REPEATABLE -->
+ <!-- Causes TransactionStatusManagerItemTest to fail -->
+ <exclude>**/TransactionStatusConnectorTest.java</exclude>
+ <!-- Causes TransactionStatusConnectorTest to fail -->
+ <exclude>**/AsyncUnitTest.java</exclude>
+ <!-- Sequencing -->
+ <exclude>**/LogStressTest.java</exclude>
+ <exclude>**/TopLevelActionUnitTest.java</exclude>
+ <!-- End of Sequencing -->
+
+
+ <exclude>**/resources/**</exclude>
+ <exclude>**/DummyCheckedAction.java</exclude>
+ <exclude>**/MyAccess.java</exclude>
+ <exclude>**/Worker.java</exclude>
+ <exclude>**/BasicCrashRecord.java</exclude>
+ <exclude>**/DummyRecoveryModule.java</exclude>
+ <exclude>**/CrashAbstractRecord*.java</exclude>
+ <exclude>**/RecoveryTransaction.java</exclude>
+ <exclude>**/UserDefFirst0Setup.java</exclude>
+ <exclude>**/CachedTest.java</exclude>
+
+ <!-- LogStressTest2 takes too long - needs moving to /qa -->
+ <exclude>**/LogStressTest2.java</exclude>
+ <!-- tests which have been modified to run using byteman scripts -->
+ <exclude>**/reaper/ReaperMonitorTest.java</exclude>
+ <exclude>**/reaper/ReaperTestCase3.java</exclude>
+ <exclude>**/reaper/ReaperTestCase2.java</exclude>
+ <exclude>**/reaper/ReaperTestCase.java</exclude>
+ <exclude>**/objectstore/LogStoreRecoveryTest.java</exclude>
+ <exclude>**/objectstore/LogStoreTest2.java</exclude>
+
+ <exclude>**/recovery/RecoveryManagerStartStopTest.java</exclude>
+ <!-- auxilairy code used by reaper test classes -->
+ <exclude>**/reaper/ReaperTestCaseControl.java</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.logging</groupId>
+ <artifactId>jboss-logging</artifactId>
+ <version>3.0.0.Beta4</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>common</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.hornetq</groupId>
+ <artifactId>hornetq-core</artifactId>
+ <version>2.1.2.Final</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.byteman</groupId>
+ <artifactId>byteman</artifactId>
+ <version>1.4.0</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+</project>
Added: labs/jbosstm/trunk/ArjunaCore/arjuna/services/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/arjuna/services/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/arjuna/services/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,43 @@
+<?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-build-common</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>arjunacore-services</artifactId>
+ <name>ArjunaCore arjuna services module</name>
+ <packaging>jar</packaging>
+
+ <build>
+ <sourceDirectory>classes</sourceDirectory>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>tanukisoft</groupId>
+ <artifactId>wrapper</artifactId>
+ <version>3.2.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>arjuna</artifactId>
+ </dependency>
+ </dependencies>
+
+</project>
Added: labs/jbosstm/trunk/ArjunaCore/docs/ArjunaCore_Development_Guide/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/docs/ArjunaCore_Development_Guide/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/docs/ArjunaCore_Development_Guide/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,95 @@
+<?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-build-common</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>arjunacore-devguide</artifactId>
+ <name>ArjunaCore devguide module</name>
+ <packaging>jdocbook</packaging>
+
+ <build>
+ <plugins>
+
+ <plugin>
+ <groupId>org.jboss.maven.plugins</groupId>
+ <artifactId>maven-jdocbook-plugin</artifactId>
+ <version>2.3.4</version>
+ <extensions>true</extensions>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-docbook-xslt</artifactId>
+ <version>1.1.0</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss</groupId>
+ <artifactId>jbossorg-jdocbook-style</artifactId>
+ <version>1.1.0</version>
+ <type>jdocbook-style</type>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <sourceDocumentName>ArjunaCore_Development_Guide.xml</sourceDocumentName>
+ <sourceDirectory>.</sourceDirectory>
+ <masterTranslation>en-US</masterTranslation>
+ <imageResource>
+ <directory>${basedir}/en-US</directory>
+ <includes>
+ <include>images/*</include>
+ </includes>
+ </imageResource>
+
+
+ <formats>
+ <format>
+ <formatName>pdf</formatName>
+ <stylesheetResource>file:${basedir}/publican/Common_Content/jboss-community/xsl/pdf.xsl</stylesheetResource>
+ </format>
+ <!-- <format> <formatName>pdf</formatName> <stylesheetResource>classpath:/xslt/org/jboss/pdf.xsl</stylesheetResource>
+ <finalName>Development_Guide.pdf</finalName> </format> <format> <formatName>html</formatName>
+ <stylesheetResource>classpath:/xslt/org/jboss/xhtml.xsl</stylesheetResource>
+ <finalName>index.html</finalName> </format> -->
+ </formats>
+ <options>
+ <xincludeSupported>true</xincludeSupported>
+ <!-- needed for uri-resolvers; can be ommitted if using 'current' uri
+ scheme -->
+ <!-- could also locate the docbook dependency and inspect its version... -->
+ <docbookVersion>1.72.0</docbookVersion>
+ <localeSeparator>-</localeSeparator>
+ <autoDetectFonts>true</autoDetectFonts>
+ </options>
+ </configuration>
+
+ <executions>
+ <execution>
+ <id>make-doc</id>
+ <phase>compile</phase>
+ <goals>
+ <goal>resources</goal>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: labs/jbosstm/trunk/ArjunaCore/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,78 @@
+<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-build-common</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>arjunacore-dist</artifactId>
+ <packaging>pom</packaging>
+ <name>ArjunaCore</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/assembly/bin.xml</descriptor>
+ </descriptors>
+ <tarLongFileMode>gnu</tarLongFileMode>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <modules>
+ <module>../common</module>
+ <module>arjuna</module>
+ <module>arjuna/services</module>
+ <module>tsmx</module>
+ <module>txoj</module>
+ <module>arjunacore</module>
+ </modules>
+
+ <properties>
+ <PRODUCT_NAME>arjunacore</PRODUCT_NAME>
+ <HOME_DIRECTORY>JBOSSCORE_HOME</HOME_DIRECTORY>
+ </properties>
+</project>
Modified: labs/jbosstm/trunk/ArjunaCore/tsmx/build.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/build.xml 2011-02-15 11:05:26 UTC (rev 36601)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/build.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -64,15 +64,15 @@
includes="com/arjuna/ats/tools/jmxbrowser/**/*.class"
excludes="com/arjuna/ats/tools/toolsframework/**/*.class"/>
<fileset dir="${etc.dir}/jmxbrowser/" includes="*.gif"/>
- <metainf dir="${etc.dir}/jmxbrowser/" includes="tools.properties"/>
+ <metainf dir="${etc.dir}/jmxbrowser/META-INF/" includes="tools.properties"/>
</jar>
<jar jarfile="${install.dir}/${modulename}-objectstorebrowser.jar">
<fileset dir="${build.dir}/classes"
includes="com/arjuna/ats/tools/objectstorebrowser/**/*.class"
- excludes="com/arjuna/ats/tools/toolsframework/**/*.class,com/arjuna/ats/tools/objecstorebrowser/stateviewers/viewers/**/*.class"/>
+ excludes="com/arjuna/ats/tools/toolsframework/**/*.class,com/arjuna/ats/tools/objectstorebrowser/stateviewers/viewers/**/*.class"/>
<fileset dir="${etc.dir}/objectstorebrowser/" includes="*.gif"/>
- <metainf dir="${etc.dir}/objectstorebrowser/" includes="tools.properties"/>
+ <metainf dir="${etc.dir}/objectstorebrowser/META-INF/" includes="tools.properties"/>
</jar>
<jar jarfile="${install.dir}/plugins/osbv-defaults.jar">
@@ -100,7 +100,7 @@
excludes="com/arjuna/ats/tools/toolsframework/**/*.class"/>
<fileset dir="${etc.dir}/perfgraph/"
includes="*.gif"/>
- <metainf dir="${etc.dir}/perfgraph/" includes="tools.properties"/>
+ <metainf dir="${etc.dir}/perfgraph/META-INF/" includes="tools.properties"/>
</jar>
<copy file="${etc.dir}/toolsframework.xml" todir="${install.dir}"/>
Copied: labs/jbosstm/trunk/ArjunaCore/tsmx/etc/jmxbrowser/META-INF/tools.properties (from rev 36600, labs/jbosstm/trunk/ArjunaCore/tsmx/etc/jmxbrowser/tools.properties)
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/etc/jmxbrowser/META-INF/tools.properties (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/etc/jmxbrowser/META-INF/tools.properties 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,27 @@
+#
+# JBoss, Home of Professional Open Source
+# Copyright 2006, 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) 2005-2006,
+# @author JBoss Inc.
+#
+# JBoss Transaction Service - Tools
+# JMX Browser
+tool.classname=com.arjuna.ats.tools.jmxbrowser.JMXBrowserPlugin
+tool.icon.16=/jmxbrowser-icon16.gif
+
+# Tool Properties
+javax.management.ObjectName=com.arjuna.ats.tools.jmxbrowser.stateviewers.ObjectNameViewer
Deleted: labs/jbosstm/trunk/ArjunaCore/tsmx/etc/jmxbrowser/tools.properties
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/etc/jmxbrowser/tools.properties 2011-02-15 11:05:26 UTC (rev 36601)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/etc/jmxbrowser/tools.properties 2011-02-15 15:37:54 UTC (rev 36602)
@@ -1,27 +0,0 @@
-#
-# JBoss, Home of Professional Open Source
-# Copyright 2006, 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) 2005-2006,
-# @author JBoss Inc.
-#
-# JBoss Transaction Service - Tools
-# JMX Browser
-tool.classname=com.arjuna.ats.tools.jmxbrowser.JMXBrowserPlugin
-tool.icon.16=/jmxbrowser-icon16.gif
-
-# Tool Properties
-javax.management.ObjectName=com.arjuna.ats.tools.jmxbrowser.stateviewers.ObjectNameViewer
Copied: labs/jbosstm/trunk/ArjunaCore/tsmx/etc/objectstorebrowser/META-INF/tools.properties (from rev 36600, labs/jbosstm/trunk/ArjunaCore/tsmx/etc/objectstorebrowser/tools.properties)
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/etc/objectstorebrowser/META-INF/tools.properties (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/etc/objectstorebrowser/META-INF/tools.properties 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,30 @@
+#
+# JBoss, Home of Professional Open Source
+# Copyright 2006, 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) 2005-2006,
+# @author JBoss Inc.
+#
+# JBoss Transaction Service - Tools
+# ObjectStore Browser
+tool.classname=com.arjuna.ats.tools.objectstorebrowser.ObjectStoreBrowserPlugin
+tool.icon.16=/objectstore-icon16.gif
+
+# Tool Properties
+com.arjuna.mwtools.objectstorebrowser.rootprovider=com.arjuna.ats.tools.objectstorebrowser.rootprovider.providers.DefaultRootProvider
+com.arjuna.mwtools.objectstorebrowser.initializer=com.arjuna.ats.tools.objectstorebrowser.ToolInitializer
+com.arjuna.mwtools.objectstorebrowser.altinitializer=com.arjuna.ats.tools.objectstorebrowser.ToolInitializer
+com.arjuna.mwtools.objectstorebrowser.entityviewers.com.arjuna.ats.tools.objectstorebrowser.entityviewer.viewers.resource.ResourceActionHandle=com.arjuna.ats.tools.objectstorebrowser.entityviewer.viewers.resource.ResourceEntityViewer
\ No newline at end of file
Deleted: labs/jbosstm/trunk/ArjunaCore/tsmx/etc/objectstorebrowser/tools.properties
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/etc/objectstorebrowser/tools.properties 2011-02-15 11:05:26 UTC (rev 36601)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/etc/objectstorebrowser/tools.properties 2011-02-15 15:37:54 UTC (rev 36602)
@@ -1,30 +0,0 @@
-#
-# JBoss, Home of Professional Open Source
-# Copyright 2006, 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) 2005-2006,
-# @author JBoss Inc.
-#
-# JBoss Transaction Service - Tools
-# ObjectStore Browser
-tool.classname=com.arjuna.ats.tools.objectstorebrowser.ObjectStoreBrowserPlugin
-tool.icon.16=/objectstore-icon16.gif
-
-# Tool Properties
-com.arjuna.mwtools.objectstorebrowser.rootprovider=com.arjuna.ats.tools.objectstorebrowser.rootprovider.providers.DefaultRootProvider
-com.arjuna.mwtools.objectstorebrowser.initializer=com.arjuna.ats.tools.objectstorebrowser.ToolInitializer
-com.arjuna.mwtools.objectstorebrowser.altinitializer=com.arjuna.ats.tools.objectstorebrowser.ToolInitializer
-com.arjuna.mwtools.objectstorebrowser.entityviewers.com.arjuna.ats.tools.objectstorebrowser.entityviewer.viewers.resource.ResourceActionHandle=com.arjuna.ats.tools.objectstorebrowser.entityviewer.viewers.resource.ResourceEntityViewer
\ No newline at end of file
Copied: labs/jbosstm/trunk/ArjunaCore/tsmx/etc/perfgraph/META-INF/tools.properties (from rev 36600, labs/jbosstm/trunk/ArjunaCore/tsmx/etc/perfgraph/tools.properties)
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/etc/perfgraph/META-INF/tools.properties (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/etc/perfgraph/META-INF/tools.properties 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,26 @@
+#
+# JBoss, Home of Professional Open Source
+# Copyright 2006, 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) 2005-2006,
+# @author JBoss Inc.
+#
+# JBoss Transaction Service - Tools
+# JMX Browser
+tool.classname=com.arjuna.ats.tools.perfgraph.PerformanceGraph
+tool.icon.16=/perfgraph-icon16.gif
+
+# Tool Properties
Deleted: labs/jbosstm/trunk/ArjunaCore/tsmx/etc/perfgraph/tools.properties
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/etc/perfgraph/tools.properties 2011-02-15 11:05:26 UTC (rev 36601)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/etc/perfgraph/tools.properties 2011-02-15 15:37:54 UTC (rev 36602)
@@ -1,26 +0,0 @@
-#
-# JBoss, Home of Professional Open Source
-# Copyright 2006, 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) 2005-2006,
-# @author JBoss Inc.
-#
-# JBoss Transaction Service - Tools
-# JMX Browser
-tool.classname=com.arjuna.ats.tools.perfgraph.PerformanceGraph
-tool.icon.16=/perfgraph-icon16.gif
-
-# Tool Properties
Added: labs/jbosstm/trunk/ArjunaCore/tsmx/jmxbrowser/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/jmxbrowser/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/jmxbrowser/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,55 @@
+<?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-build-common</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>tsmx-jmxbrowser</artifactId>
+ <name>ArjunaCore tsmx-jmxbrowser module</name>
+ <packaging>jar</packaging>
+
+ <build>
+ <sourceDirectory>../bin</sourceDirectory>
+ <resources>
+ <resource>
+ <directory>../etc/jmxbrowser</directory>
+ </resource>
+ </resources>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>com/arjuna/ats/tools/jmxbrowser/**</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>tsmx-tools</artifactId>
+ </dependency>
+ </dependencies>
+
+</project>
Added: labs/jbosstm/trunk/ArjunaCore/tsmx/objectstorebrowser/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/objectstorebrowser/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/objectstorebrowser/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,63 @@
+<?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-build-common</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>tsmx-objectstorebrowser</artifactId>
+ <name>ArjunaCore tsmx-objectstorebrowser module</name>
+ <packaging>jar</packaging>
+
+ <build>
+ <sourceDirectory>../bin</sourceDirectory>
+ <resources>
+ <resource>
+ <directory>../etc/objectstorebrowser</directory>
+ </resource>
+ </resources>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>com/arjuna/ats/tools/objectstorebrowser/**</include>
+ </includes>
+ <excludes>
+ <exclude>com/arjuna/ats/tools/objectstorebrowser/stateviewers/viewers/**</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>tsmx-tools</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.javaee</groupId>
+ <artifactId>jboss-javaee</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+</project>
Added: labs/jbosstm/trunk/ArjunaCore/tsmx/osbv-defaults/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/osbv-defaults/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/osbv-defaults/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,82 @@
+<?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-build-common</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>osbv-defaults</artifactId>
+ <name>ArjunaCore osbv-defaults module</name>
+ <packaging>jar</packaging>
+
+ <build>
+ <sourceDirectory>../bin</sourceDirectory>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>com/arjuna/ats/tools/objectstorebrowser/stateviewers/viewers/**</include>
+ </includes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestSections>
+ <manifestSection>
+ <name>arjuna-tools-objectstorebrowser-jta</name>
+ <manifestEntries>
+ <plugin-classname-1>com.arjuna.ats.tools.objectstorebrowser.stateviewers.viewers.atomicaction.AtomicActionViewer</plugin-classname-1>
+ <plugin-classname-2>com.arjuna.ats.tools.objectstorebrowser.stateviewers.viewers.abstractrecord.XAResourceRecordViewer</plugin-classname-2>
+ <plugin-classname-3>com.arjuna.ats.tools.objectstorebrowser.stateviewers.viewers.abstractrecord.AbstractRecordViewer</plugin-classname-3>
+ <plugin-classname-4>com.arjuna.ats.tools.objectstorebrowser.stateviewers.viewers.InFlightTransactionViewer</plugin-classname-4>
+ </manifestEntries>
+ </manifestSection>
+ <manifestSection>
+ <name>arjuna-tools-objectstorebrowser-jts</name>
+ <manifestEntries>
+ <plugin-classname-1>com.arjuna.ats.tools.objectstorebrowser.stateviewers.viewers.arjunatransaction.ArjunaTransactionViewer</plugin-classname-1>
+ <plugin-classname-2>com.arjuna.ats.tools.objectstorebrowser.stateviewers.viewers.abstractrecord.ResourceRecordViewer</plugin-classname-2>
+ <plugin-classname-3>com.arjuna.ats.tools.objectstorebrowser.stateviewers.viewers.abstractrecord.ExtendedResourceRecordViewer</plugin-classname-3>
+ </manifestEntries>
+ </manifestSection>
+ </manifestSections>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>tsmx-objectstorebrowser</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.javaee</groupId>
+ <artifactId>jboss-javaee</artifactId>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+
+</project>
Added: labs/jbosstm/trunk/ArjunaCore/tsmx/perfgraph/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/perfgraph/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/perfgraph/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,60 @@
+<?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-build-common</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>tsmx-perfgraph</artifactId>
+ <name>ArjunaCore tsmx-perfgraph module</name>
+ <packaging>jar</packaging>
+
+ <build>
+ <sourceDirectory>../bin</sourceDirectory>
+ <resources>
+ <resource>
+ <directory>../etc/perfgraph</directory>
+ </resource>
+ </resources>
+
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>com/arjuna/ats/tools/perfgraph/**</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>jfree</groupId>
+ <artifactId>jfreechart</artifactId>
+ <version>1.0.2</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>tsmx-tools</artifactId>
+ </dependency>
+ </dependencies>
+
+</project>
Added: labs/jbosstm/trunk/ArjunaCore/tsmx/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,36 @@
+<?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-build-common</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>tsmx</artifactId>
+ <name>ArjunaCore tsmx module</name>
+ <packaging>pom</packaging>
+
+ <modules>
+ <module>tools</module>
+ <module>jmxbrowser</module>
+ <module>objectstorebrowser</module>
+ <module>osbv-defaults</module>
+ <module>perfgraph</module>
+ </modules>
+
+</project>
Added: labs/jbosstm/trunk/ArjunaCore/tsmx/tools/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/tsmx/tools/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/tsmx/tools/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,69 @@
+<?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-build-common</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>tsmx-tools</artifactId>
+ <name>ArjunaCore tsmx-tools module</name>
+ <packaging>jar</packaging>
+
+ <build>
+ <sourceDirectory>../bin</sourceDirectory>
+
+ <plugins>
+ <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>../classes</source>
+ </sources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <includes>
+ <include>com/arjuna/ats/tools/toolsframework/**</include>
+ <include>com/arjuna/ats/tsmx/**</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>arjuna</artifactId>
+ </dependency>
+ </dependencies>
+
+</project>
Added: labs/jbosstm/trunk/ArjunaCore/txoj/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/txoj/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaCore/txoj/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,89 @@
+<?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-build-common</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>txoj</artifactId>
+ <name>ArjunaCore txoj module</name>
+ <packaging>jar</packaging>
+
+ <build>
+ <sourceDirectory>classes</sourceDirectory>
+ <resources>
+ <resource>
+ <directory>etc</directory>
+ </resource>
+ </resources>
+ <testResources>
+ <testResource>
+ <directory>../</directory>
+ <includes>
+ <include>jbossts-properties.xml</include>
+ </includes>
+ </testResource>
+ </testResources>
+
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>add-test-source</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>add-test-source</goal>
+ </goals>
+ <configuration>
+ <sources>
+ <source>${basedir}/tests</source>
+ <source>${basedir}/../../common/tests/com/arjuna/common/tests/simple</source>
+ </sources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <excludes>
+ <exclude>**/common/**</exclude>
+ </excludes>
+ </configuration>
+ </plugin>
+
+ </plugins>
+ </build>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>arjuna</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+</project>
Added: labs/jbosstm/trunk/ArjunaJTS/jtax/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTS/jtax/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaJTS/jtax/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,100 @@
+<?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">
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.narayana</groupId>
+ <artifactId>jtax</artifactId>
+ <name>JTAX</name>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ <packaging>jar</packaging>
+
+ <developers>
+ <developer>
+ <id>tomjenkinson</id>
+ <name>Thomas Jenkinson</name>
+ <email>tom.jenkinson at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>Project Lead</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+ </developers>
+
+ <licenses>
+ <license>
+ <name>LGPL 2.1</name>
+ <url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
+ </license>
+ </licenses>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>idlj-maven-plugin</artifactId>
+ <dependencies>
+ <dependency>
+ <groupId>org.jacorb</groupId>
+ <artifactId>jacorb-idl-compiler</artifactId>
+ <version>2.2.3</version>
+ </dependency>
+ </dependencies>
+ <executions>
+ <execution>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <compiler>jacorb</compiler>
+ <sourceDirectory>tests/idl/</sourceDirectory>
+ <sources>
+ <source>
+ <includes>
+ <include>test.idl</include>
+ </includes>
+ <additionalArguments>
+ <additionalArgument>-DORB_OTS_SUPPORT=1</additionalArgument>
+ <additionalArgument>-DORB_CURRENT_SUPPORT=1</additionalArgument>
+ </additionalArguments>
+ </source>
+ </sources>
+ <includeDirs>
+ <includeDir>../jts/idl/omg</includeDir>
+ <includeDir>../jts/idl/arjuna</includeDir>
+ <includeDir>../jts/../jacorb/idl/omg</includeDir>
+ </includeDirs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.narayana</groupId>
+ <artifactId>jts</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+</project>
Added: labs/jbosstm/trunk/ArjunaJTS/jts/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTS/jts/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaJTS/jts/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,153 @@
+<?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">
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.narayana</groupId>
+ <artifactId>jts</artifactId>
+ <name>ArjunaJTS jts</name>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ <packaging>jar</packaging>
+
+ <developers>
+ <developer>
+ <id>tomjenkinson</id>
+ <name>Thomas Jenkinson</name>
+ <email>tom.jenkinson at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>Project Lead</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+ </developers>
+
+ <licenses>
+ <license>
+ <name>LGPL 2.1</name>
+ <url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
+ </license>
+ </licenses>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>add-test-source</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>add-test-source</goal>
+ </goals>
+ <configuration>
+ <sources>
+ <source>${basedir}/target/generated-test-sources/idl</source>
+ </sources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>idlj-maven-plugin</artifactId>
+ <dependencies>
+ <dependency>
+ <groupId>org.jacorb</groupId>
+ <artifactId>jacorb-idl-compiler</artifactId>
+ <version>2.2.3</version>
+ </dependency>
+ </dependencies>
+ <executions>
+ <execution>
+ <id>generate-sources</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ <configuration>
+ <compiler>jacorb</compiler>
+ <sourceDirectory>idl/</sourceDirectory>
+ <outputDirectory>target/generated-sources/idl</outputDirectory>
+ <sources>
+ <source>
+ <includes>
+ <include>omg/CosTransactions.idl</include>
+ <include>arjuna/ArjunaOTS.idl</include>
+ <include>omg/XA.idl</include>
+ </includes>
+ <additionalArguments>
+ <additionalArgument>-DORB_OTS_SUPPORT=1</additionalArgument>
+ <additionalArgument>-DORB_CURRENT_SUPPORT=1</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>CosTransactions:org.omg.CosTransactions</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>XA:org.omg.XA</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>ArjunaOTS:com.arjuna.ArjunaOTS</additionalArgument>
+ </additionalArguments>
+ </source>
+ </sources>
+ <includeDirs>
+ <includeDir>../jacorb/idl/omg</includeDir>
+ </includeDirs>
+ </configuration>
+ </execution>
+ <execution>
+ <id>generate-test-sources</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ <configuration>
+ <compiler>jacorb</compiler>
+ <sourceDirectory>tests/idl/</sourceDirectory>
+ <outputDirectory>target/generated-test-sources/idl</outputDirectory>
+ <sources>
+ <source>
+ <includes>
+ <include>TestModule.idl</include>
+ </includes>
+ <additionalArguments>
+ <additionalArgument>-DORB_OTS_SUPPORT=1</additionalArgument>
+ <additionalArgument>-DORB_CURRENT_SUPPORT=1</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>TestModule:com.hp.mwtests.ts.jts.TestModule</additionalArgument>
+ </additionalArguments>
+ </source>
+ </sources>
+ <includeDirs>
+ <includeDir>idl/omg</includeDir>
+ <includeDir>../jacorb/idl/omg</includeDir>
+ </includeDirs>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>jacorb</groupId>
+ <artifactId>jacorb</artifactId>
+ <version>2.3.1jboss.patch01-brew</version>
+ <scope>provided</scope>
+ </dependency>
+ </dependencies>
+</project>
Added: labs/jbosstm/trunk/ArjunaJTS/orbportability/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTS/orbportability/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaJTS/orbportability/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,97 @@
+<?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">
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.narayana</groupId>
+ <artifactId>orb-portability</artifactId>
+ <name>ORB portability</name>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ <packaging>jar</packaging>
+
+ <developers>
+ <developer>
+ <id>tomjenkinson</id>
+ <name>Thomas Jenkinson</name>
+ <email>tom.jenkinson at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>Project Lead</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+ </developers>
+
+ <licenses>
+ <license>
+ <name>LGPL 2.1</name>
+ <url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
+ </license>
+ </licenses>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>idlj-maven-plugin</artifactId>
+ <dependencies>
+ <dependency>
+ <groupId>org.jacorb</groupId>
+ <artifactId>jacorb-idl-compiler</artifactId>
+ <version>2.2.3</version>
+ </dependency>
+ </dependencies>
+ <executions>
+ <execution>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <compiler>jacorb</compiler>
+ <sourceDirectory>tests/idl/</sourceDirectory>
+ <sources>
+ <source>
+ <includes>
+ <include>orbtests.idl</include>
+ </includes>
+ <additionalArguments>
+ <additionalArgument>-DORB_OTS_SUPPORT=1</additionalArgument>
+ <additionalArgument>-DORB_CURRENT_SUPPORT=1</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>orbtests:com.hp.mwtests.orbportability.orbspecific.orbtests</additionalArgument>
+ </additionalArguments>
+ </source>
+ </sources>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.narayana</groupId>
+ <artifactId>jts</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+</project>
Added: labs/jbosstm/trunk/common/pom.xml
===================================================================
--- labs/jbosstm/trunk/common/pom.xml (rev 0)
+++ labs/jbosstm/trunk/common/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,56 @@
+<?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-build-common</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>common</artifactId>
+ <name>Arjuna core common</name>
+ <packaging>jar</packaging>
+
+ <build>
+ <sourceDirectory>classes</sourceDirectory>
+ <testSourceDirectory>tests</testSourceDirectory>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestEntries>
+ <arjuna-properties-file>jbossts-properties.xml</arjuna-properties-file>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ <!-- START TEST -->
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ <!-- END TEST -->
+ </dependencies>
+
+</project>
Added: labs/jbosstm/trunk/narayana-build/common/pom.xml
===================================================================
--- labs/jbosstm/trunk/narayana-build/common/pom.xml (rev 0)
+++ labs/jbosstm/trunk/narayana-build/common/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,250 @@
+<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.jbossas</groupId>
+ <artifactId>jboss-as-component-matrix</artifactId>
+ <version>5.1.0.GA</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>narayana-build-common</artifactId>
+ <packaging>pom</packaging>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ <name>narayana-build-common</name>
+
+ <description>narayana-build-common</description>
+
+ <url>http://www.jboss.org/jbosstm/</url>
+ <issueManagement>
+ <system>JIRA</system>
+ <url>https://jira.jboss.org/jira/browse/JBTM/</url>
+ </issueManagement>
+ <ciManagement>
+ <system>hudson</system>
+ <url>http://hudson.qa.jboss.com/hudson/view/JBossTS/</url>
+ </ciManagement>
+
+ <developers>
+
+ <developer>
+ <id>jhalliday</id>
+ <name>Jonathan Halliday</name>
+ <email>jonathan.halliday at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>project lead</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+
+ <developer>
+ <id>adinn</id>
+ <name>Andrew Dinn</name>
+ <email>adinn at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>XTS lead</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+
+ <developer>
+ <id>mmusgrov</id>
+ <name>Michael Musgrove</name>
+ <email>mmusgrov at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>Core Developer</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+
+ <developer>
+ <id>mark.little at jboss.com</id>
+ <name>Mark Little</name>
+ <email>mlittle at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>JBoss CTO</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+
+ <developer>
+ <id>istudens at redhat.com</id>
+ <name>Ivo Studensky</name>
+ <email>istudens at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>QA lead</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+
+ </developers>
+
+ <licenses>
+ <license>
+ <name>LGPL 2.1</name>
+ <url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
+ </license>
+ </licenses>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/labs/labs/jbosstm/</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/labs/labs/jbosstm/</developerConnection>
+ <url>http://fisheye.jboss.org/browse/JBossTS/</url>
+ </scm>
+
+ <repositories>
+ <repository>
+ <id>jbossThirdParty</id>
+ <url>https://repository.jboss.org/nexus/content/repositories/thirdparty-releases/</url>
+ </repository>
+ <repository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <url>https://repository.jboss.org/nexus/content/groups/public/</url>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </repository>
+ </repositories>
+
+ <distributionManagement>
+ <repository>
+ <id>jboss-releases-repository</id>
+ <name>JBoss Release Repository</name>
+ <url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url>
+ </repository>
+
+ <snapshotRepository>
+ <id>jboss-snapshots-repository</id>
+ <name>JBoss Snapshot Repository</name>
+ <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
+ </snapshotRepository>
+ </distributionManagement>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>attach-sources</id>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+
+
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>common</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>arjuna</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>arjunacore-services</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>arjunacore</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>tsmx</artifactId>
+ <version>${project.version}</version>
+ <type>pom</type>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>tsmx-jmxbrowser</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>tsmx-tools</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>tsmx-objectstorebrowser</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>osbv-defaults</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>tsmx-perfgraph</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>txoj</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+
+<properties>
+ <maven.build.timestamp.format>yyyy/MMM/dd HH:mm</maven.build.timestamp.format>
+ <buildproperty.date>${maven.build.timestamp}</buildproperty.date>
+</properties>
+
+</project>
Added: labs/jbosstm/trunk/narayana-build/pom.xml
===================================================================
--- labs/jbosstm/trunk/narayana-build/pom.xml (rev 0)
+++ labs/jbosstm/trunk/narayana-build/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,145 @@
+<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)
+ -->
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>narayana-build</artifactId>
+ <packaging>pom</packaging>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ <name>JBossTS jbossts-build</name>
+
+ <description>JBossTS - JBoss Transaction Service. JTA, JTS and XTS (WS-AT, WS-BA)</description>
+
+ <url>http://www.jboss.org/jbosstm/</url>
+ <issueManagement>
+ <system>JIRA</system>
+ <url>https://jira.jboss.org/jira/browse/JBTM/</url>
+ </issueManagement>
+ <ciManagement>
+ <system>hudson</system>
+ <url>http://hudson.qa.jboss.com/hudson/view/JBossTS/</url>
+ </ciManagement>
+
+ <developers>
+
+ <developer>
+ <id>jhalliday</id>
+ <name>Jonathan Halliday</name>
+ <email>jonathan.halliday at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>project lead</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+
+ <developer>
+ <id>adinn</id>
+ <name>Andrew Dinn</name>
+ <email>adinn at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>XTS lead</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+
+ <developer>
+ <id>mmusgrov</id>
+ <name>Michael Musgrove</name>
+ <email>mmusgrov at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>Core Developer</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+
+ <developer>
+ <id>mark.little at jboss.com</id>
+ <name>Mark Little</name>
+ <email>mlittle at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>JBoss CTO</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+
+ <developer>
+ <id>istudens at redhat.com</id>
+ <name>Ivo Studensky</name>
+ <email>istudens at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>QA lead</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+
+ </developers>
+
+ <licenses>
+ <license>
+ <name>LGPL 2.1</name>
+ <url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
+ </license>
+ </licenses>
+
+ <scm>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/labs/labs/jbosstm/</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/labs/labs/jbosstm/</developerConnection>
+ <url>http://fisheye.jboss.org/browse/JBossTS/</url>
+ </scm>
+
+ <repositories>
+ <repository>
+ <id>jboss-public-repository-group</id>
+ <name>JBoss Public Maven Repository Group</name>
+ <url>https://repository.jboss.org/nexus/content/groups/public/</url>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ </repository>
+ </repositories>
+
+ <modules>
+ <module>common/pom.xml</module>
+ <module>../ArjunaCore/pom.xml</module>
+ <module>../qa/tests/pom.xml</module>
+ <module>../ArjunaJTS/jtax/pom.xml</module>
+ <module>../ArjunaJTS/orbportability/pom.xml</module>
+ <module>../ArjunaJTS/jts/pom.xml</module>
+ <module>../rhq-plugin/pom.xml</module>
+ <module>../rest-tx/pom.xml</module>
+ </modules>
+</project>
Added: labs/jbosstm/trunk/qa/tests/pom.xml
===================================================================
--- labs/jbosstm/trunk/qa/tests/pom.xml (rev 0)
+++ labs/jbosstm/trunk/qa/tests/pom.xml 2011-02-15 15:37:54 UTC (rev 36602)
@@ -0,0 +1,183 @@
+<?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">
+
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.jboss.narayana</groupId>
+ <artifactId>qa-tests</artifactId>
+ <name>QA tests</name>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ <packaging>jar</packaging>
+
+ <developers>
+ <developer>
+ <id>tomjenkinson</id>
+ <name>Thomas Jenkinson</name>
+ <email>tom.jenkinson at redhat.com</email>
+ <organization>JBoss</organization>
+ <organizationUrl>http://www.jboss.org/</organizationUrl>
+ <roles>
+ <role>Project Lead</role>
+ </roles>
+ <timezone>0</timezone>
+ </developer>
+ </developers>
+
+ <licenses>
+ <license>
+ <name>LGPL 2.1</name>
+ <url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
+ </license>
+ </licenses>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>idlj-maven-plugin</artifactId>
+ <dependencies>
+ <dependency>
+ <groupId>org.jacorb</groupId>
+ <artifactId>jacorb-idl-compiler</artifactId>
+ <version>2.2.3</version>
+ </dependency>
+ </dependencies>
+ <executions>
+ <execution>
+ <goals>
+ <goal>generate</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <compiler>jacorb</compiler>
+ <sourceDirectory>idl/</sourceDirectory>
+ <sources>
+ <source>
+ <includes>
+ <include>AITResources01.idl</include>
+ <include>AITResources02.idl</include>
+ <include>CrashRecovery01.idl</include>
+ <include>CrashRecovery02.idl</include>
+ <include>CrashRecovery03.idl</include>
+ <include>CrashRecovery04.idl</include>
+ <include>CrashRecovery05.idl</include>
+ <include>CrashRecovery06.idl</include>
+ <include>CrashRecovery07.idl</include>
+ <include>CrashRecovery08.idl</include>
+ <include>CrashRecovery09.idl</include>
+ <include>CrashRecovery10.idl</include>
+ <include>CrashRecovery11.idl</include>
+ <include>EnlistDelistEnlist01.idl</include>
+ <include>Hammer01.idl</include>
+ <include>Hammer02.idl</include>
+ <include>Issues0001.idl</include>
+ <include>JDBCResources01.idl</include>
+ <include>JDBCResources02.idl</include>
+ <include>JDBCResources03.idl</include>
+ <include>JDBCResources04.idl</include>
+ <include>performance.idl</include>
+ <include>PerfProfile01.idl</include>
+ <include>RawResources01.idl</include>
+ <include>RawResources02.idl</include>
+ <include>RawSubtransactionAwareResources01.idl</include>
+ <include>RawSubtransactionAwareResources02.idl</include>
+ <include>SupportTests01.idl</include>
+ </includes>
+ <additionalArguments>
+ <additionalArgument>-DORB_OTS_SUPPORT=1</additionalArgument>
+ <additionalArgument>-DORB_CURRENT_SUPPORT=1</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>AITResources01:org.jboss.jbossts.qa.AITResources01</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>AITResources02:org.jboss.jbossts.qa.AITResources02</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>CrashRecovery01:org.jboss.jbossts.qa.CrashRecovery01</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>CrashRecovery02:org.jboss.jbossts.qa.CrashRecovery02</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>CrashRecovery03:org.jboss.jbossts.qa.CrashRecovery03</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>CrashRecovery04:org.jboss.jbossts.qa.CrashRecovery04</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>CrashRecovery05:org.jboss.jbossts.qa.CrashRecovery05</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>CrashRecovery06:org.jboss.jbossts.qa.CrashRecovery06</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>CrashRecovery07:org.jboss.jbossts.qa.CrashRecovery07</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>CrashRecovery08:org.jboss.jbossts.qa.CrashRecovery08</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>CrashRecovery09:org.jboss.jbossts.qa.CrashRecovery09</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>CrashRecovery10:org.jboss.jbossts.qa.CrashRecovery10</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>CrashRecovery11:org.jboss.jbossts.qa.CrashRecovery11</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>EnlistDelistEnlist01:org.jboss.jbossts.qa.EnlistDelistEnlist01</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>Hammer01:org.jboss.jbossts.qa.Hammer01</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>Hammer02:org.jboss.jbossts.qa.Hammer02</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>Issues0001:org.jboss.jbossts.qa.Issues0001</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>JDBCResources01:org.jboss.jbossts.qa.JDBCResources01</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>JDBCResources02:org.jboss.jbossts.qa.JDBCResources02</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>JDBCResources03:org.jboss.jbossts.qa.JDBCResources03</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>JDBCResources04:org.jboss.jbossts.qa.JDBCResources04</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>performance:org.jboss.jbossts.qa.performance</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>PerfProfile01:org.jboss.jbossts.qa.PerfProfile01</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>RawResources01:org.jboss.jbossts.qa.RawResources01</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>RawResources02:org.jboss.jbossts.qa.RawResources02</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>RawSubtransactionAwareResources01:org.jboss.jbossts.qa.RawSubtransactionAwareResources01</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>RawSubtransactionAwareResources02:org.jboss.jbossts.qa.RawSubtransactionAwareResources02</additionalArgument>
+ <additionalArgument>-i2jpackage</additionalArgument>
+ <additionalArgument>SupportTests01:org.jboss.jbossts.qa.SupportTests01</additionalArgument>
+ </additionalArguments>
+ </source>
+ </sources>
+ <includeDirs>
+ <includeDir>../../ArjunaJTS/jts/idl/omg</includeDir>
+ <includeDir>../../ArjunaJTS/jts/idl/arjuna</includeDir>
+ <includeDir>../../ArjunaJTS/jts/../jacorb/idl/omg</includeDir>
+ </includeDirs>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.narayana</groupId>
+ <artifactId>jts</artifactId>
+ <version>5.0.0.M1-SNAPSHOT</version>
+ </dependency>
+ </dependencies>
+</project>
More information about the jboss-svn-commits
mailing list