[jboss-cvs] JBossAS SVN: r66241 - in projects/integration/trunk: jboss-classloading-spi and 2 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Oct 18 11:20:36 EDT 2007


Author: dimitris at jboss.org
Date: 2007-10-18 11:20:36 -0400 (Thu, 18 Oct 2007)
New Revision: 66241

Modified:
   projects/integration/trunk/build/pom.xml
   projects/integration/trunk/jboss-classloading-spi/pom.xml
   projects/integration/trunk/jboss-corba-ots-spi/pom.xml
   projects/integration/trunk/jboss-transaction-spi/pom.xml
Log:
[maven-release-plugin] prepare release 5.0.0.Beta4

Modified: projects/integration/trunk/build/pom.xml
===================================================================
--- projects/integration/trunk/build/pom.xml	2007-10-18 15:08:21 UTC (rev 66240)
+++ projects/integration/trunk/build/pom.xml	2007-10-18 15:20:36 UTC (rev 66241)
@@ -1,173 +1,156 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  The parent maven for the microcontainer project that expects a structure like: 
-    build/pom.xml
-
-  This pom aggregates the subproject pom, and it also functions as a default 
-  configuration.  The subproject poms each inherit configuration from this one.
-  
-  To build this project maven 2 should be installed and in the system path. 
-  From the command line run "mvn" from the build directory and "install" will 
-  be used as the default goal.  In order to use the "deploy" goal, 
-  the mvn.cvs.root should be specified in settings.xml.
-  
-  To add a module edit the modules section and add the module also to 
-  assembly/bin.xml and assembly.sources.xml.
--->
-<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</groupId>
-    <artifactId>jboss-parent</artifactId>
-    <version>3</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.jboss</groupId>
-  <artifactId>jboss-integration</artifactId>
-  <version>5.0.0-SNAPSHOT</version>
-  <packaging>pom</packaging>
-  <name>JBoss Integration 5.0 Build</name>
-  <url>http://www.jboss.com</url>
-  <description>
-    The JBoss Integration SPI classes
-  </description>
-  <scm>
-    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/integration/trunk/</connection>
-    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/integration/trunk/</developerConnection>
-    <url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossas/projects/integration/trunk/</url>
-  </scm>
-
-  <build>
-    <sourceDirectory>src/main</sourceDirectory>
-    <testSourceDirectory>src/tests</testSourceDirectory>
-    <finalName>${artifactId}</finalName>
-    <resources>
-      <resource>
-        <directory>src/etc</directory>
-        <includes>
-          <include>**/*</include>
-        </includes>
-        <filtering>true</filtering>
-      </resource>
-    </resources>
-    <testResources>
-      <testResource>
-        <directory>src/resources</directory>
-        <includes>
-          <include>**/*</include>
-        </includes>
-        <filtering>true</filtering>
-      </testResource>
-    </testResources>
-    <plugins>
-      <plugin>
-        <artifactId>maven-assembly-plugin</artifactId>
-        <executions>
-          <execution>
-            <phase>package</phase>
-            <goals>
-              <goal>assembly</goal>
-            </goals>
-          </execution>
-        </executions>
-        <configuration>
-          <descriptors>
-            <descriptor>assembly/bin.xml</descriptor>
-            <descriptor>assembly/sources.xml</descriptor>
-          </descriptors>
-        </configuration>
-        <inherited>false</inherited>
-      </plugin>
-      <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <printSummary>false</printSummary>
-          <testFailureIgnore>true</testFailureIgnore>
-          <includes>
-            <include>**/**TestCase.java</include>
-          </includes>
-          <skip>true</skip>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.jboss.maven.plugins</groupId>
-        <artifactId>maven-jboss-deploy-plugin</artifactId>
-        <version>1.3</version>
-        <executions>
-          <execution>
-            <goals>
-              <goal>jboss-deploy</goal>
-            </goals>
-          </execution>
-        </executions>
-        <configuration>
-          <jbossDeployRoot>${jboss.repository.root}</jbossDeployRoot>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
-  <repositories>
-    <repository>
-      <id>jboss</id>
-      <name>JBoss Repository</name>
-      <layout>default</layout>
-      <url>http://repository.jboss.org/maven2/</url>
-      <snapshots>
-        <enabled>true</enabled>
-      </snapshots>
-    </repository>
-  </repositories>
-  <modules>
-    <module>../jboss-classloading-spi</module>
-    <module>../jboss-transaction-spi</module>
-    <module>../jboss-corba-ots-spi</module>
-  </modules>
-  <reporting>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-project-info-reports-plugin</artifactId>
-        <reportSets>
-          <reportSet>
-            <reports>
-              <report>dependencies</report>
-              <report>issue-tracking</report>
-              <report>license</report>
-              <report>scm</report>
-            </reports>
-          </reportSet>
-        </reportSets>
-      </plugin>
-    </plugins>
-  </reporting>
-    <!-- The parent pom manages the inter-dependencies of the modules. -->
-  <dependencyManagement>
-    <dependencies>
-      <dependency>
-        <groupId>jboss</groupId>
-        <artifactId>jboss-common-logging-spi</artifactId>
-        <version>2.0.4.GA</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jboss</groupId>
-        <artifactId>jboss-common-core</artifactId>
-        <version>2.2.1.GA</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jboss.javaee</groupId>
-        <artifactId>jboss-jca-api</artifactId>
-        <version>1.5.0.20070913080910</version>
-      </dependency>
-      <dependency>
-        <groupId>org.jboss.javaee</groupId>
-        <artifactId>jboss-transaction-api</artifactId>
-        <version>1.0.1.20070913080910</version>
-      </dependency>
-      <dependency>
-        <groupId>jacorb</groupId>
-        <artifactId>jacorb</artifactId>
-        <version>2.3.0jboss.patch4-brew</version>
-      </dependency>
-    </dependencies>
-  </dependencyManagement>
-</project>
+<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</groupId>
+    <artifactId>jboss-parent</artifactId>
+    <version>3</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss</groupId>
+  <artifactId>jboss-integration</artifactId>
+  <version>5.0.0.Beta4</version>
+  <packaging>pom</packaging>
+  <name>JBoss Integration 5.0 Build</name>
+  <url>http://www.jboss.com</url>
+  <description>
+    The JBoss Integration SPI classes
+  </description>
+  <scm>
+    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/integration/tags/5.0.0.Beta4</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/integration/tags/5.0.0.Beta4</developerConnection>
+    <url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbossas/projects/integration/tags/5.0.0.Beta4</url>
+  </scm>
+
+  <build>
+    <sourceDirectory>src/main</sourceDirectory>
+    <testSourceDirectory>src/tests</testSourceDirectory>
+    <finalName>${artifactId}</finalName>
+    <resources>
+      <resource>
+        <directory>src/etc</directory>
+        <includes>
+          <include>**/*</include>
+        </includes>
+        <filtering>true</filtering>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>src/resources</directory>
+        <includes>
+          <include>**/*</include>
+        </includes>
+        <filtering>true</filtering>
+      </testResource>
+    </testResources>
+    <plugins>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>assembly</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <descriptors>
+            <descriptor>assembly/bin.xml</descriptor>
+            <descriptor>assembly/sources.xml</descriptor>
+          </descriptors>
+        </configuration>
+        <inherited>false</inherited>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <printSummary>false</printSummary>
+          <testFailureIgnore>true</testFailureIgnore>
+          <includes>
+            <include>**/**TestCase.java</include>
+          </includes>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jboss-deploy-plugin</artifactId>
+        <version>1.3</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>jboss-deploy</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <jbossDeployRoot>${jboss.repository.root}</jbossDeployRoot>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <repositories>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Repository</name>
+      <layout>default</layout>
+      <url>http://repository.jboss.org/maven2/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+  <modules>
+    <module>../jboss-classloading-spi</module>
+    <module>../jboss-transaction-spi</module>
+    <module>../jboss-corba-ots-spi</module>
+  </modules>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>dependencies</report>
+              <report>issue-tracking</report>
+              <report>license</report>
+              <report>scm</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
+    <!-- The parent pom manages the inter-dependencies of the modules. -->
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>jboss</groupId>
+        <artifactId>jboss-common-logging-spi</artifactId>
+        <version>2.0.4.GA</version>
+      </dependency>
+      <dependency>
+        <groupId>org.jboss</groupId>
+        <artifactId>jboss-common-core</artifactId>
+        <version>2.2.1.GA</version>
+      </dependency>
+      <dependency>
+        <groupId>org.jboss.javaee</groupId>
+        <artifactId>jboss-jca-api</artifactId>
+        <version>1.5.0.20070913080910</version>
+      </dependency>
+      <dependency>
+        <groupId>org.jboss.javaee</groupId>
+        <artifactId>jboss-transaction-api</artifactId>
+        <version>1.0.1.20070913080910</version>
+      </dependency>
+      <dependency>
+        <groupId>jacorb</groupId>
+        <artifactId>jacorb</artifactId>
+        <version>2.3.0jboss.patch4-brew</version>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+</project>
\ No newline at end of file

Modified: projects/integration/trunk/jboss-classloading-spi/pom.xml
===================================================================
--- projects/integration/trunk/jboss-classloading-spi/pom.xml	2007-10-18 15:08:21 UTC (rev 66240)
+++ projects/integration/trunk/jboss-classloading-spi/pom.xml	2007-10-18 15:20:36 UTC (rev 66241)
@@ -1,22 +1,22 @@
-<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</groupId>
-    <artifactId>jboss-integration</artifactId>
-    <version>5.0.0-SNAPSHOT</version>
-    <relativePath>../build/pom.xml</relativePath>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.jboss</groupId>
-  <artifactId>jboss-classloading-spi</artifactId>
-  <version>5.0.0-SNAPSHOT</version>
-  <packaging>jar</packaging>
-  <name>JBoss ClassLoading 5.0.0 SPI</name>
-  <url>http://www.jboss.org</url>
-  <description>The Java ClassLoading 5.0.0 SPI classes</description>
-  <dependencies>
-    <dependency>
-      <groupId>org.jboss</groupId>
-      <artifactId>jboss-common-core</artifactId>
-    </dependency>
-  </dependencies>
-</project>
+<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</groupId>
+    <artifactId>jboss-integration</artifactId>
+    <version>5.0.0.Beta4</version>
+    <relativePath>../build/pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss</groupId>
+  <artifactId>jboss-classloading-spi</artifactId>
+  <version>5.0.0.Beta4</version>
+  <packaging>jar</packaging>
+  <name>JBoss ClassLoading 5.0.0 SPI</name>
+  <url>http://www.jboss.org</url>
+  <description>The Java ClassLoading 5.0.0 SPI classes</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss</groupId>
+      <artifactId>jboss-common-core</artifactId>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Modified: projects/integration/trunk/jboss-corba-ots-spi/pom.xml
===================================================================
--- projects/integration/trunk/jboss-corba-ots-spi/pom.xml	2007-10-18 15:08:21 UTC (rev 66240)
+++ projects/integration/trunk/jboss-corba-ots-spi/pom.xml	2007-10-18 15:20:36 UTC (rev 66241)
@@ -1,27 +1,26 @@
-<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</groupId>
-    <artifactId>jboss-integration</artifactId>
-    <version>5.0.0-SNAPSHOT</version>
-    <relativePath>../build/pom.xml</relativePath>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.jboss</groupId>
-  <artifactId>jboss-corba-ots-spi</artifactId>
-  <version>5.0.0-SNAPSHOT</version>
-  <packaging>jar</packaging>
-  <name>JBoss 5.0.0 CORBA OTS SPI</name>
-  <url>http://www.jboss.org</url>
-  <description>SPI to be implemented by CORBA OTS providers for JBoss 5.0.0</description>
-  <dependencies>
-    <dependency>
-      <groupId>org.jboss.javaee</groupId>
-      <artifactId>jboss-transaction-api</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>jacorb</groupId>
-      <artifactId>jacorb</artifactId>
-    </dependency>
-  </dependencies>
-</project>
+<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</groupId>
+    <artifactId>jboss-integration</artifactId>
+    <version>5.0.0.Beta4</version>
+    <relativePath>../build/pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss</groupId>
+  <artifactId>jboss-corba-ots-spi</artifactId>
+  <version>5.0.0.Beta4</version>
+  <packaging>jar</packaging>
+  <name>JBoss 5.0.0 CORBA OTS SPI</name>
+  <url>http://www.jboss.org</url>
+  <description>SPI to be implemented by CORBA OTS providers for JBoss 5.0.0</description>
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss.javaee</groupId>
+      <artifactId>jboss-transaction-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>jacorb</groupId>
+      <artifactId>jacorb</artifactId>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file

Modified: projects/integration/trunk/jboss-transaction-spi/pom.xml
===================================================================
--- projects/integration/trunk/jboss-transaction-spi/pom.xml	2007-10-18 15:08:21 UTC (rev 66240)
+++ projects/integration/trunk/jboss-transaction-spi/pom.xml	2007-10-18 15:20:36 UTC (rev 66241)
@@ -1,31 +1,30 @@
-<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</groupId>
-    <artifactId>jboss-integration</artifactId>
-    <version>5.0.0-SNAPSHOT</version>
-    <relativePath>../build/pom.xml</relativePath>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.jboss</groupId>
-  <artifactId>jboss-transaction-spi</artifactId>
-  <version>5.0.0-SNAPSHOT</version>
-  <packaging>jar</packaging>
-  <name>JBoss Transaction 5.0.0 SPI</name>
-  <url>http://www.jboss.org</url>
-  <description>The Java Transaction 5.0.0 SPI classes</description>
-  <dependencies>
-    <dependency>
-      <groupId>jboss</groupId>
-      <artifactId>jboss-common-logging-spi</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.jboss.javaee</groupId>
-      <artifactId>jboss-jca-api</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.jboss.javaee</groupId>
-      <artifactId>jboss-transaction-api</artifactId>
-    </dependency>
-  </dependencies>
-</project>
+<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</groupId>
+    <artifactId>jboss-integration</artifactId>
+    <version>5.0.0.Beta4</version>
+    <relativePath>../build/pom.xml</relativePath>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss</groupId>
+  <artifactId>jboss-transaction-spi</artifactId>
+  <version>5.0.0.Beta4</version>
+  <packaging>jar</packaging>
+  <name>JBoss Transaction 5.0.0 SPI</name>
+  <url>http://www.jboss.org</url>
+  <description>The Java Transaction 5.0.0 SPI classes</description>
+  <dependencies>
+    <dependency>
+      <groupId>jboss</groupId>
+      <artifactId>jboss-common-logging-spi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.javaee</groupId>
+      <artifactId>jboss-jca-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jboss.javaee</groupId>
+      <artifactId>jboss-transaction-api</artifactId>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file




More information about the jboss-cvs-commits mailing list