[jboss-svn-commits] JBL Code SVN: r36665 - in labs/jbosstm/trunk: ArjunaJTA/jbossjta and 6 other directories.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Wed Feb 23 08:05:44 EST 2011
Author: tomjenkinson
Date: 2011-02-23 08:05:43 -0500 (Wed, 23 Feb 2011)
New Revision: 36665
Added:
labs/jbosstm/trunk/ArjunaJTS/dist/
labs/jbosstm/trunk/ArjunaJTS/dist/pom.xml
labs/jbosstm/trunk/ArjunaJTS/dist/src/
labs/jbosstm/trunk/ArjunaJTS/trailmap/pom.xml
Modified:
labs/jbosstm/trunk/ArjunaCore/arjunacore/pom.xml
labs/jbosstm/trunk/ArjunaJTA/jbossjta/pom.xml
labs/jbosstm/trunk/ArjunaJTS/jbossjts/pom.xml
labs/jbosstm/trunk/ArjunaJTS/trailmap/
labs/jbosstm/trunk/maven/
labs/jbosstm/trunk/narayana-build-common/pom.xml
Log:
JBTM-574 only put the builder number in the core jars as those are the ones that originally contained them and first cut at JTS dist
Modified: labs/jbosstm/trunk/ArjunaCore/arjunacore/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaCore/arjunacore/pom.xml 2011-02-23 11:31:28 UTC (rev 36664)
+++ labs/jbosstm/trunk/ArjunaCore/arjunacore/pom.xml 2011-02-23 13:05:43 UTC (rev 36665)
@@ -30,7 +30,39 @@
<build>
<plugins>
<plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>buildnumber-maven-plugin</artifactId>
+ <version>1.0-beta-4</version>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>create</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <doCheck>true</doCheck>
+ <doUpdate>false</doUpdate>
+ <scmBranchPropertyName>buildScmBranch</scmBranchPropertyName>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestEntries>
+ <arjuna-scm-revision>${buildScmBranch} (revision: ${buildNumber})</arjuna-scm-revision>
+ <arjuna-properties-file>jbossts-properties.xml</arjuna-properties-file>
+ <arjuna-builder>JBoss Inc. [${user.name}] ${os.name}
+ ${os.version} ${buildproperty.date}</arjuna-builder>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
Modified: labs/jbosstm/trunk/ArjunaJTA/jbossjta/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTA/jbossjta/pom.xml 2011-02-23 11:31:28 UTC (rev 36664)
+++ labs/jbosstm/trunk/ArjunaJTA/jbossjta/pom.xml 2011-02-23 13:05:43 UTC (rev 36665)
@@ -30,7 +30,39 @@
<build>
<plugins>
<plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>buildnumber-maven-plugin</artifactId>
+ <version>1.0-beta-4</version>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>create</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <doCheck>true</doCheck>
+ <doUpdate>false</doUpdate>
+ <scmBranchPropertyName>buildScmBranch</scmBranchPropertyName>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestEntries>
+ <arjuna-scm-revision>${buildScmBranch} (revision: ${buildNumber})</arjuna-scm-revision>
+ <arjuna-properties-file>jbossts-properties.xml</arjuna-properties-file>
+ <arjuna-builder>JBoss Inc. [${user.name}] ${os.name}
+ ${os.version} ${buildproperty.date}</arjuna-builder>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
Added: labs/jbosstm/trunk/ArjunaJTS/dist/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTS/dist/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaJTS/dist/pom.xml 2011-02-23 13:05:43 UTC (rev 36665)
@@ -0,0 +1,131 @@
+<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>jbossts-jta</artifactId>
+ <packaging>pom</packaging>
+ <name>JBossJTA distribution</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>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>arjunacore-services</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>common</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>arjuna</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>tsmx-tools</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>tsmx-jmxbrowser</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>osbv-defaults</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>tsmx-perfgraph</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>txoj</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>jbossjta</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>jbossjta</artifactId>
+ <classifier>javadoc</classifier>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>jbossjta</artifactId>
+ <classifier>sources</classifier>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>jdbc</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>tsmx-jta-objectstorebrowser</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossts</groupId>
+ <artifactId>jbossjta-integration</artifactId>
+ </dependency>
+ </dependencies>
+
+
+ <properties>
+ <PRODUCT_NAME>jbossjta</PRODUCT_NAME>
+ <HOME_DIRECTORY>JBOSSTA_HOME</HOME_DIRECTORY>
+ </properties>
+</project>
Modified: labs/jbosstm/trunk/ArjunaJTS/jbossjts/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTS/jbossjts/pom.xml 2011-02-23 11:31:28 UTC (rev 36664)
+++ labs/jbosstm/trunk/ArjunaJTS/jbossjts/pom.xml 2011-02-23 13:05:43 UTC (rev 36665)
@@ -30,7 +30,39 @@
<build>
<plugins>
<plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>buildnumber-maven-plugin</artifactId>
+ <version>1.0-beta-4</version>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>create</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <doCheck>true</doCheck>
+ <doUpdate>false</doUpdate>
+ <scmBranchPropertyName>buildScmBranch</scmBranchPropertyName>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestEntries>
+ <arjuna-scm-revision>${buildScmBranch} (revision: ${buildNumber})</arjuna-scm-revision>
+ <arjuna-properties-file>jbossts-properties.xml</arjuna-properties-file>
+ <arjuna-builder>JBoss Inc. [${user.name}] ${os.name}
+ ${os.version} ${buildproperty.date}</arjuna-builder>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
Property changes on: labs/jbosstm/trunk/ArjunaJTS/trailmap
___________________________________________________________________
Added: snv:ignore
+ target
build
.project
.classpath
.settings
Added: svn:ignore
+ .project
.settings
html
Added: labs/jbosstm/trunk/ArjunaJTS/trailmap/pom.xml
===================================================================
--- labs/jbosstm/trunk/ArjunaJTS/trailmap/pom.xml (rev 0)
+++ labs/jbosstm/trunk/ArjunaJTS/trailmap/pom.xml 2011-02-23 13:05:43 UTC (rev 36665)
@@ -0,0 +1,73 @@
+<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>trailmap</artifactId>
+ <packaging>pom</packaging>
+ <name>Trailmap</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>compile</phase>
+ <configuration>
+ <tasks>
+ <property name="docs.dir" value="docs" />
+ <property name="xsl.dir" value="xsl" />
+ <property name="html.dir" value="html" />
+ <property name="xsl.file" value="ATL_LookAndFeel.xsl" />
+ <copy todir="${html.dir}">
+ <fileset dir="${docs.dir}">
+ <include name="**/*.css" />
+ <include name="**/*.gif" />
+ <include name="**/*.jpg" />
+ <include name="**/*.GIF" />
+ </fileset>
+ </copy>
+ <style processor="trax" style="${xsl.dir}/${xsl.file}"
+ basedir="${docs.dir}" includes="*.xml" destdir="${html.dir}"
+ extension=".html">
+ <param name="rootpath" expression="." />
+ </style>
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ant</groupId>
+ <artifactId>ant-trax</artifactId>
+ <version>1.8.0</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Property changes on: labs/jbosstm/trunk/maven
___________________________________________________________________
Modified: svn:ignore
- pom.xml
+ .project
.settings
pom.xml
Modified: labs/jbosstm/trunk/narayana-build-common/pom.xml
===================================================================
--- labs/jbosstm/trunk/narayana-build-common/pom.xml 2011-02-23 11:31:28 UTC (rev 36664)
+++ labs/jbosstm/trunk/narayana-build-common/pom.xml 2011-02-23 13:05:43 UTC (rev 36665)
@@ -168,38 +168,6 @@
</execution>
</executions>
</plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>buildnumber-maven-plugin</artifactId>
- <version>1.0-beta-4</version>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>create</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <doCheck>true</doCheck>
- <doUpdate>false</doUpdate>
- <scmBranchPropertyName>buildScmBranch</scmBranchPropertyName>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <manifestEntries>
- <arjuna-scm-revision>${buildScmBranch} (revision: ${buildNumber})</arjuna-scm-revision>
- <arjuna-properties-file>jbossts-properties.xml</arjuna-properties-file>
- <arjuna-builder>JBoss Inc. [${user.name}] ${os.name}
- ${os.version} ${buildproperty.date}</arjuna-builder>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
</plugins>
</build>
More information about the jboss-svn-commits
mailing list