gatein SVN: r8377 - in portal/trunk/packaging/jboss-as7: pkg and 1 other directories.
by do-not-reply@jboss.org
Author: mstruk
Date: 2012-02-02 19:40:41 -0500 (Thu, 02 Feb 2012)
New Revision: 8377
Modified:
portal/trunk/packaging/jboss-as7/pkg/download-jboss.xml
portal/trunk/packaging/jboss-as7/pkg/pom.xml
portal/trunk/packaging/jboss-as7/pkg/src/main/resources/jboss/modules/org/jboss/as/web/main/module.xml
portal/trunk/packaging/jboss-as7/pom.xml
Log:
GTNPORTAL-2154 Support for JBoss AS7
- upgraded supported version to JBoss AS 7.1.0.CR1b
- implemented jboss-as download via maven dependency
- fixed wci version
Modified: portal/trunk/packaging/jboss-as7/pkg/download-jboss.xml
===================================================================
--- portal/trunk/packaging/jboss-as7/pkg/download-jboss.xml 2012-02-02 21:47:10 UTC (rev 8376)
+++ portal/trunk/packaging/jboss-as7/pkg/download-jboss.xml 2012-02-03 00:40:41 UTC (rev 8377)
@@ -2,30 +2,20 @@
<project name="download-jboss" xmlns:mvn="http://maven.apache.org/POM/4.0.0">
- <target name="download-jboss">
+ <target name="jbossas-download-check">
+ <condition property="jbossas.missing">
+ <not>
+ <available file="${dest}"/>
+ </not>
+ </condition>
+ </target>
- <!-- Fetch jbossas .zip -->
- <get dest="${dest}" skipexisting="true">
- <url url="${url}"/>
- </get>
+ <target name="download-jboss" depends="jbossas-download-check" if="jbossas.missing">
- <!-- Fetch .sha1 file -->
- <!--
- <get dest="${dest}.sha1" skipexisting="true">
- <url url="${url}.sha1"/>
- </get>
- -->
+ <dependencyfilesets/>
+ <copy tofile="${dest}" >
+ <fileset refid="${maven.artifact}"/>
+ </copy>
- <!-- Validate checksum -->
- <!--
- <local name="checksum.matches"/>
- <local name="checksum.matches.fail"/>
- <checksum file="${dest}" algorithm="sha" fileext=".sha1"
- verifyproperty="checksum.matches"/>
- <condition property="checksum.matches.fail">
- <equals arg1="${checksum.matches}" arg2="false"/>
- </condition>
- <fail if="checksum.matches.fail">Checksum validation failed! (for: ${dest})</fail>
- -->
</target>
</project>
\ No newline at end of file
Modified: portal/trunk/packaging/jboss-as7/pkg/pom.xml
===================================================================
--- portal/trunk/packaging/jboss-as7/pkg/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
+++ portal/trunk/packaging/jboss-as7/pkg/pom.xml 2012-02-03 00:40:41 UTC (rev 8377)
@@ -337,6 +337,14 @@
<profile>
<id>download</id>
+ <dependencies>
+ <dependency>
+ <groupId>org.jboss.as</groupId>
+ <artifactId>jboss-as-dist</artifactId>
+ <version>${version.jboss.as}</version>
+ <type>zip</type>
+ </dependency>
+ </dependencies>
<build>
<plugins>
<plugin>
@@ -389,8 +397,8 @@
<!-- Download JBossAS unless already downloaded -->
<ant antfile="${project.basedir}/download-jboss.xml">
<target name="download-jboss"/>
- <property name="url"
- value="http://download.jboss.org/jbossas/7.1/jboss-as-${jbossas.dist.version}/jb..."/>
+ <property name="maven.artifact"
+ value="org.jboss.as:jboss-as-dist:zip"/>
<property name="dest" value="${jbossas.zip}"/>
</ant>
Modified: portal/trunk/packaging/jboss-as7/pkg/src/main/resources/jboss/modules/org/jboss/as/web/main/module.xml
===================================================================
--- portal/trunk/packaging/jboss-as7/pkg/src/main/resources/jboss/modules/org/jboss/as/web/main/module.xml 2012-02-02 21:47:10 UTC (rev 8376)
+++ portal/trunk/packaging/jboss-as7/pkg/src/main/resources/jboss/modules/org/jboss/as/web/main/module.xml 2012-02-03 00:40:41 UTC (rev 8377)
@@ -25,7 +25,7 @@
<module xmlns="urn:jboss:module:1.1" name="org.jboss.as.web">
<resources>
- <resource-root path="jboss-as-web-7.1.0.CR1.jar"/>
+ <resource-root path="jboss-as-web-7.1.0.CR1b.jar"/>
<resource-root path="jasper-jdt-7.0.3.Final.jar"/>
<resource-root path="jbossweb-7.0.7.Final.jar"/>
<!-- Insert resources here -->
Modified: portal/trunk/packaging/jboss-as7/pom.xml
===================================================================
--- portal/trunk/packaging/jboss-as7/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
+++ portal/trunk/packaging/jboss-as7/pom.xml 2012-02-03 00:40:41 UTC (rev 8377)
@@ -12,10 +12,10 @@
<name>GateIn JBoss AS 7.x.x packaging</name>
<properties>
- <version.jboss.as.release>7.1.0.CR1</version.jboss.as.release>
- <version.jboss.as>7.1.0.CR1</version.jboss.as>
+ <version.jboss.as.release>7.1.0.CR1b</version.jboss.as.release>
+ <version.jboss.as>7.1.0.CR1b</version.jboss.as>
<version.org.jboss.vfs>3.0.0.GA</version.org.jboss.vfs>
- <version.org.gatein.wci.as7>2.1.0-Beta07-AS7-Beta01</version.org.gatein.wci.as7>
+ <version.org.gatein.wci.as7>2.1.0-Beta07-AS7-Beta02</version.org.gatein.wci.as7>
<version.exo.kernel.as7>2.3.2-GA-AS7-Beta02</version.exo.kernel.as7>
<version.org.gatein.naming>1.0.0-Beta01</version.org.gatein.naming>
<exo.projects.app.jboss7.version>jboss-as-${version.jboss.as.release}</exo.projects.app.jboss7.version>
12 years, 11 months
gatein SVN: r8376 - in components/pc/trunk: api and 19 other directories.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2012-02-02 16:47:10 -0500 (Thu, 02 Feb 2012)
New Revision: 8376
Modified:
components/pc/trunk/api/pom.xml
components/pc/trunk/bridge/pom.xml
components/pc/trunk/controller/pom.xml
components/pc/trunk/docs/pom.xml
components/pc/trunk/docs/user-guide/pom.xml
components/pc/trunk/federation/pom.xml
components/pc/trunk/jsr168api/pom.xml
components/pc/trunk/management/pom.xml
components/pc/trunk/pom.xml
components/pc/trunk/portal/pom.xml
components/pc/trunk/portlet/pom.xml
components/pc/trunk/samples/pom.xml
components/pc/trunk/test/core/pom.xml
components/pc/trunk/test/pom.xml
components/pc/trunk/test/servers/jboss42/pom.xml
components/pc/trunk/test/servers/jboss51/pom.xml
components/pc/trunk/test/servers/jboss6/pom.xml
components/pc/trunk/test/servers/jetty6/pom.xml
components/pc/trunk/test/servers/pom.xml
components/pc/trunk/test/servers/tomcat6/pom.xml
components/pc/trunk/test/servers/tomcat7/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: components/pc/trunk/api/pom.xml
===================================================================
--- components/pc/trunk/api/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/api/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.pc</groupId>
Modified: components/pc/trunk/bridge/pom.xml
===================================================================
--- components/pc/trunk/bridge/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/bridge/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-bridge</artifactId>
Modified: components/pc/trunk/controller/pom.xml
===================================================================
--- components/pc/trunk/controller/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/controller/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-controller</artifactId>
Modified: components/pc/trunk/docs/pom.xml
===================================================================
--- components/pc/trunk/docs/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/docs/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<artifactId>docs-aggregator</artifactId>
<packaging>pom</packaging>
Modified: components/pc/trunk/docs/user-guide/pom.xml
===================================================================
--- components/pc/trunk/docs/user-guide/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/docs/user-guide/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<groupId>org.gatein.pc</groupId>
<artifactId>user-guide-${translation}</artifactId>
Modified: components/pc/trunk/federation/pom.xml
===================================================================
--- components/pc/trunk/federation/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/federation/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-federation</artifactId>
Modified: components/pc/trunk/jsr168api/pom.xml
===================================================================
--- components/pc/trunk/jsr168api/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/jsr168api/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-jsr168api</artifactId>
Modified: components/pc/trunk/management/pom.xml
===================================================================
--- components/pc/trunk/management/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/management/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-management</artifactId>
Modified: components/pc/trunk/pom.xml
===================================================================
--- components/pc/trunk/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -33,7 +33,7 @@
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
<packaging>pom</packaging>
<name>GateIn - Portlet Container</name>
@@ -49,9 +49,9 @@
</issueManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/pc/tags/2.3.1-Be...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/pc/tags/2.3.1-Beta02</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/components/pc/tags/2.3.1-Beta02</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/pc/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/pc/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/components/pc/trunk</url>
</scm>
<properties>
Modified: components/pc/trunk/portal/pom.xml
===================================================================
--- components/pc/trunk/portal/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/portal/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-portal</artifactId>
Modified: components/pc/trunk/portlet/pom.xml
===================================================================
--- components/pc/trunk/portlet/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/portlet/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-portlet</artifactId>
Modified: components/pc/trunk/samples/pom.xml
===================================================================
--- components/pc/trunk/samples/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/samples/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-samples</artifactId>
Modified: components/pc/trunk/test/core/pom.xml
===================================================================
--- components/pc/trunk/test/core/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/test/core/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-core</artifactId>
Modified: components/pc/trunk/test/pom.xml
===================================================================
--- components/pc/trunk/test/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/test/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test</artifactId>
Modified: components/pc/trunk/test/servers/jboss42/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jboss42/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/test/servers/jboss42/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jboss42</artifactId>
Modified: components/pc/trunk/test/servers/jboss51/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jboss51/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/test/servers/jboss51/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jboss51</artifactId>
Modified: components/pc/trunk/test/servers/jboss6/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jboss6/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/test/servers/jboss6/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jboss6</artifactId>
Modified: components/pc/trunk/test/servers/jetty6/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jetty6/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/test/servers/jetty6/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jetty6</artifactId>
Modified: components/pc/trunk/test/servers/pom.xml
===================================================================
--- components/pc/trunk/test/servers/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/test/servers/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-servers</artifactId>
Modified: components/pc/trunk/test/servers/tomcat6/pom.xml
===================================================================
--- components/pc/trunk/test/servers/tomcat6/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/test/servers/tomcat6/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-tomcat6</artifactId>
Modified: components/pc/trunk/test/servers/tomcat7/pom.xml
===================================================================
--- components/pc/trunk/test/servers/tomcat7/pom.xml 2012-02-02 21:46:53 UTC (rev 8375)
+++ components/pc/trunk/test/servers/tomcat7/pom.xml 2012-02-02 21:47:10 UTC (rev 8376)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta02</version>
+ <version>2.3.1-Beta03-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-tomcat7</artifactId>
12 years, 11 months
gatein SVN: r8375 - components/pc/tags.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2012-02-02 16:46:53 -0500 (Thu, 02 Feb 2012)
New Revision: 8375
Added:
components/pc/tags/2.3.1-Beta02/
Log:
[maven-release-plugin] copy for tag 2.3.1-Beta02
12 years, 11 months
gatein SVN: r8374 - in components/pc/trunk: api and 19 other directories.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2012-02-02 16:46:41 -0500 (Thu, 02 Feb 2012)
New Revision: 8374
Modified:
components/pc/trunk/api/pom.xml
components/pc/trunk/bridge/pom.xml
components/pc/trunk/controller/pom.xml
components/pc/trunk/docs/pom.xml
components/pc/trunk/docs/user-guide/pom.xml
components/pc/trunk/federation/pom.xml
components/pc/trunk/jsr168api/pom.xml
components/pc/trunk/management/pom.xml
components/pc/trunk/pom.xml
components/pc/trunk/portal/pom.xml
components/pc/trunk/portlet/pom.xml
components/pc/trunk/samples/pom.xml
components/pc/trunk/test/core/pom.xml
components/pc/trunk/test/pom.xml
components/pc/trunk/test/servers/jboss42/pom.xml
components/pc/trunk/test/servers/jboss51/pom.xml
components/pc/trunk/test/servers/jboss6/pom.xml
components/pc/trunk/test/servers/jetty6/pom.xml
components/pc/trunk/test/servers/pom.xml
components/pc/trunk/test/servers/tomcat6/pom.xml
components/pc/trunk/test/servers/tomcat7/pom.xml
Log:
[maven-release-plugin] prepare release 2.3.1-Beta02
Modified: components/pc/trunk/api/pom.xml
===================================================================
--- components/pc/trunk/api/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/api/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.pc</groupId>
Modified: components/pc/trunk/bridge/pom.xml
===================================================================
--- components/pc/trunk/bridge/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/bridge/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-bridge</artifactId>
Modified: components/pc/trunk/controller/pom.xml
===================================================================
--- components/pc/trunk/controller/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/controller/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-controller</artifactId>
Modified: components/pc/trunk/docs/pom.xml
===================================================================
--- components/pc/trunk/docs/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/docs/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<artifactId>docs-aggregator</artifactId>
<packaging>pom</packaging>
Modified: components/pc/trunk/docs/user-guide/pom.xml
===================================================================
--- components/pc/trunk/docs/user-guide/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/docs/user-guide/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<groupId>org.gatein.pc</groupId>
<artifactId>user-guide-${translation}</artifactId>
Modified: components/pc/trunk/federation/pom.xml
===================================================================
--- components/pc/trunk/federation/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/federation/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-federation</artifactId>
Modified: components/pc/trunk/jsr168api/pom.xml
===================================================================
--- components/pc/trunk/jsr168api/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/jsr168api/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-jsr168api</artifactId>
Modified: components/pc/trunk/management/pom.xml
===================================================================
--- components/pc/trunk/management/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/management/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-management</artifactId>
Modified: components/pc/trunk/pom.xml
===================================================================
--- components/pc/trunk/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -33,7 +33,7 @@
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
<packaging>pom</packaging>
<name>GateIn - Portlet Container</name>
@@ -49,9 +49,9 @@
</issueManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/pc/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/pc/trunk</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/components/pc/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/pc/tags/2.3.1-Be...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/pc/tags/2.3.1-Beta02</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/components/pc/tags/2.3.1-Beta02</url>
</scm>
<properties>
Modified: components/pc/trunk/portal/pom.xml
===================================================================
--- components/pc/trunk/portal/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/portal/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-portal</artifactId>
Modified: components/pc/trunk/portlet/pom.xml
===================================================================
--- components/pc/trunk/portlet/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/portlet/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-portlet</artifactId>
Modified: components/pc/trunk/samples/pom.xml
===================================================================
--- components/pc/trunk/samples/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/samples/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-samples</artifactId>
Modified: components/pc/trunk/test/core/pom.xml
===================================================================
--- components/pc/trunk/test/core/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/test/core/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-core</artifactId>
Modified: components/pc/trunk/test/pom.xml
===================================================================
--- components/pc/trunk/test/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/test/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test</artifactId>
Modified: components/pc/trunk/test/servers/jboss42/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jboss42/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/test/servers/jboss42/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jboss42</artifactId>
Modified: components/pc/trunk/test/servers/jboss51/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jboss51/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/test/servers/jboss51/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jboss51</artifactId>
Modified: components/pc/trunk/test/servers/jboss6/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jboss6/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/test/servers/jboss6/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jboss6</artifactId>
Modified: components/pc/trunk/test/servers/jetty6/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jetty6/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/test/servers/jetty6/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jetty6</artifactId>
Modified: components/pc/trunk/test/servers/pom.xml
===================================================================
--- components/pc/trunk/test/servers/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/test/servers/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-servers</artifactId>
Modified: components/pc/trunk/test/servers/tomcat6/pom.xml
===================================================================
--- components/pc/trunk/test/servers/tomcat6/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/test/servers/tomcat6/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-tomcat6</artifactId>
Modified: components/pc/trunk/test/servers/tomcat7/pom.xml
===================================================================
--- components/pc/trunk/test/servers/tomcat7/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
+++ components/pc/trunk/test/servers/tomcat7/pom.xml 2012-02-02 21:46:41 UTC (rev 8374)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta02-SNAPSHOT</version>
+ <version>2.3.1-Beta02</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-tomcat7</artifactId>
12 years, 11 months
gatein SVN: r8373 - components/pc/trunk/test/core.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2012-02-02 16:34:40 -0500 (Thu, 02 Feb 2012)
New Revision: 8373
Modified:
components/pc/trunk/test/core/pom.xml
Log:
GTNPC-74 : Add some random value to the common.xml artifact
Modified: components/pc/trunk/test/core/pom.xml
===================================================================
--- components/pc/trunk/test/core/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
+++ components/pc/trunk/test/core/pom.xml 2012-02-02 21:34:40 UTC (rev 8373)
@@ -276,7 +276,7 @@
<configuration>
<artifacts>
<artifact>
- <file>src/main/resources/common.xml</file>
+ <file>${project.build.outputDirectory}/common.xml</file>
<type>xml</type>
</artifact>
</artifacts>
12 years, 11 months
gatein SVN: r8372 - in components/pc/trunk: api and 19 other directories.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2012-02-02 15:43:56 -0500 (Thu, 02 Feb 2012)
New Revision: 8372
Modified:
components/pc/trunk/api/pom.xml
components/pc/trunk/bridge/pom.xml
components/pc/trunk/controller/pom.xml
components/pc/trunk/docs/pom.xml
components/pc/trunk/docs/user-guide/pom.xml
components/pc/trunk/federation/pom.xml
components/pc/trunk/jsr168api/pom.xml
components/pc/trunk/management/pom.xml
components/pc/trunk/pom.xml
components/pc/trunk/portal/pom.xml
components/pc/trunk/portlet/pom.xml
components/pc/trunk/samples/pom.xml
components/pc/trunk/test/core/pom.xml
components/pc/trunk/test/pom.xml
components/pc/trunk/test/servers/jboss42/pom.xml
components/pc/trunk/test/servers/jboss51/pom.xml
components/pc/trunk/test/servers/jboss6/pom.xml
components/pc/trunk/test/servers/jetty6/pom.xml
components/pc/trunk/test/servers/pom.xml
components/pc/trunk/test/servers/tomcat6/pom.xml
components/pc/trunk/test/servers/tomcat7/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: components/pc/trunk/api/pom.xml
===================================================================
--- components/pc/trunk/api/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/api/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.pc</groupId>
Modified: components/pc/trunk/bridge/pom.xml
===================================================================
--- components/pc/trunk/bridge/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/bridge/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-bridge</artifactId>
Modified: components/pc/trunk/controller/pom.xml
===================================================================
--- components/pc/trunk/controller/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/controller/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-controller</artifactId>
Modified: components/pc/trunk/docs/pom.xml
===================================================================
--- components/pc/trunk/docs/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/docs/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<artifactId>docs-aggregator</artifactId>
<packaging>pom</packaging>
Modified: components/pc/trunk/docs/user-guide/pom.xml
===================================================================
--- components/pc/trunk/docs/user-guide/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/docs/user-guide/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<groupId>org.gatein.pc</groupId>
<artifactId>user-guide-${translation}</artifactId>
Modified: components/pc/trunk/federation/pom.xml
===================================================================
--- components/pc/trunk/federation/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/federation/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-federation</artifactId>
Modified: components/pc/trunk/jsr168api/pom.xml
===================================================================
--- components/pc/trunk/jsr168api/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/jsr168api/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-jsr168api</artifactId>
Modified: components/pc/trunk/management/pom.xml
===================================================================
--- components/pc/trunk/management/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/management/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-management</artifactId>
Modified: components/pc/trunk/pom.xml
===================================================================
--- components/pc/trunk/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -33,7 +33,7 @@
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
<packaging>pom</packaging>
<name>GateIn - Portlet Container</name>
@@ -49,9 +49,9 @@
</issueManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/pc/tags/2.3.1-Be...</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/pc/tags/2.3.1-Beta01</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/components/pc/tags/2.3.1-Beta01</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/pc/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/pc/trunk</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/components/pc/trunk</url>
</scm>
<properties>
Modified: components/pc/trunk/portal/pom.xml
===================================================================
--- components/pc/trunk/portal/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/portal/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-portal</artifactId>
Modified: components/pc/trunk/portlet/pom.xml
===================================================================
--- components/pc/trunk/portlet/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/portlet/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-portlet</artifactId>
Modified: components/pc/trunk/samples/pom.xml
===================================================================
--- components/pc/trunk/samples/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/samples/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-samples</artifactId>
Modified: components/pc/trunk/test/core/pom.xml
===================================================================
--- components/pc/trunk/test/core/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/test/core/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-core</artifactId>
Modified: components/pc/trunk/test/pom.xml
===================================================================
--- components/pc/trunk/test/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/test/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test</artifactId>
Modified: components/pc/trunk/test/servers/jboss42/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jboss42/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/test/servers/jboss42/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jboss42</artifactId>
Modified: components/pc/trunk/test/servers/jboss51/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jboss51/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/test/servers/jboss51/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jboss51</artifactId>
Modified: components/pc/trunk/test/servers/jboss6/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jboss6/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/test/servers/jboss6/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jboss6</artifactId>
Modified: components/pc/trunk/test/servers/jetty6/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jetty6/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/test/servers/jetty6/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jetty6</artifactId>
Modified: components/pc/trunk/test/servers/pom.xml
===================================================================
--- components/pc/trunk/test/servers/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/test/servers/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-servers</artifactId>
Modified: components/pc/trunk/test/servers/tomcat6/pom.xml
===================================================================
--- components/pc/trunk/test/servers/tomcat6/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/test/servers/tomcat6/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-tomcat6</artifactId>
Modified: components/pc/trunk/test/servers/tomcat7/pom.xml
===================================================================
--- components/pc/trunk/test/servers/tomcat7/pom.xml 2012-02-02 20:43:27 UTC (rev 8371)
+++ components/pc/trunk/test/servers/tomcat7/pom.xml 2012-02-02 20:43:56 UTC (rev 8372)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-Beta01</version>
+ <version>2.3.1-Beta02-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-tomcat7</artifactId>
12 years, 11 months
gatein SVN: r8371 - components/pc/tags.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2012-02-02 15:43:27 -0500 (Thu, 02 Feb 2012)
New Revision: 8371
Added:
components/pc/tags/2.3.1-Beta01/
Log:
[maven-release-plugin] copy for tag 2.3.1-Beta01
12 years, 11 months
gatein SVN: r8370 - in components/pc/trunk: api and 19 other directories.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2012-02-02 15:43:04 -0500 (Thu, 02 Feb 2012)
New Revision: 8370
Modified:
components/pc/trunk/api/pom.xml
components/pc/trunk/bridge/pom.xml
components/pc/trunk/controller/pom.xml
components/pc/trunk/docs/pom.xml
components/pc/trunk/docs/user-guide/pom.xml
components/pc/trunk/federation/pom.xml
components/pc/trunk/jsr168api/pom.xml
components/pc/trunk/management/pom.xml
components/pc/trunk/pom.xml
components/pc/trunk/portal/pom.xml
components/pc/trunk/portlet/pom.xml
components/pc/trunk/samples/pom.xml
components/pc/trunk/test/core/pom.xml
components/pc/trunk/test/pom.xml
components/pc/trunk/test/servers/jboss42/pom.xml
components/pc/trunk/test/servers/jboss51/pom.xml
components/pc/trunk/test/servers/jboss6/pom.xml
components/pc/trunk/test/servers/jetty6/pom.xml
components/pc/trunk/test/servers/pom.xml
components/pc/trunk/test/servers/tomcat6/pom.xml
components/pc/trunk/test/servers/tomcat7/pom.xml
Log:
[maven-release-plugin] prepare release 2.3.1-Beta01
Modified: components/pc/trunk/api/pom.xml
===================================================================
--- components/pc/trunk/api/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/api/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.gatein.pc</groupId>
Modified: components/pc/trunk/bridge/pom.xml
===================================================================
--- components/pc/trunk/bridge/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/bridge/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-bridge</artifactId>
Modified: components/pc/trunk/controller/pom.xml
===================================================================
--- components/pc/trunk/controller/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/controller/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-controller</artifactId>
Modified: components/pc/trunk/docs/pom.xml
===================================================================
--- components/pc/trunk/docs/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/docs/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -3,7 +3,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<artifactId>docs-aggregator</artifactId>
<packaging>pom</packaging>
Modified: components/pc/trunk/docs/user-guide/pom.xml
===================================================================
--- components/pc/trunk/docs/user-guide/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/docs/user-guide/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -5,7 +5,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>docs-aggregator</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<groupId>org.gatein.pc</groupId>
<artifactId>user-guide-${translation}</artifactId>
Modified: components/pc/trunk/federation/pom.xml
===================================================================
--- components/pc/trunk/federation/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/federation/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-federation</artifactId>
Modified: components/pc/trunk/jsr168api/pom.xml
===================================================================
--- components/pc/trunk/jsr168api/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/jsr168api/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-jsr168api</artifactId>
Modified: components/pc/trunk/management/pom.xml
===================================================================
--- components/pc/trunk/management/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/management/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-management</artifactId>
Modified: components/pc/trunk/pom.xml
===================================================================
--- components/pc/trunk/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -33,7 +33,7 @@
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
<packaging>pom</packaging>
<name>GateIn - Portlet Container</name>
@@ -49,9 +49,9 @@
</issueManagement>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/pc/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/pc/trunk</developerConnection>
- <url>http://fisheye.jboss.org/browse/gatein/components/pc/trunk</url>
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/gatein/components/pc/tags/2.3.1-Be...</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/gatein/components/pc/tags/2.3.1-Beta01</developerConnection>
+ <url>http://fisheye.jboss.org/browse/gatein/components/pc/tags/2.3.1-Beta01</url>
</scm>
<properties>
Modified: components/pc/trunk/portal/pom.xml
===================================================================
--- components/pc/trunk/portal/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/portal/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-portal</artifactId>
Modified: components/pc/trunk/portlet/pom.xml
===================================================================
--- components/pc/trunk/portlet/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/portlet/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-portlet</artifactId>
Modified: components/pc/trunk/samples/pom.xml
===================================================================
--- components/pc/trunk/samples/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/samples/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -25,7 +25,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-samples</artifactId>
Modified: components/pc/trunk/test/core/pom.xml
===================================================================
--- components/pc/trunk/test/core/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/test/core/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-core</artifactId>
Modified: components/pc/trunk/test/pom.xml
===================================================================
--- components/pc/trunk/test/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/test/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-parent</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test</artifactId>
Modified: components/pc/trunk/test/servers/jboss42/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jboss42/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/test/servers/jboss42/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jboss42</artifactId>
Modified: components/pc/trunk/test/servers/jboss51/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jboss51/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/test/servers/jboss51/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jboss51</artifactId>
Modified: components/pc/trunk/test/servers/jboss6/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jboss6/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/test/servers/jboss6/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jboss6</artifactId>
Modified: components/pc/trunk/test/servers/jetty6/pom.xml
===================================================================
--- components/pc/trunk/test/servers/jetty6/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/test/servers/jetty6/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-jetty6</artifactId>
Modified: components/pc/trunk/test/servers/pom.xml
===================================================================
--- components/pc/trunk/test/servers/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/test/servers/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-servers</artifactId>
Modified: components/pc/trunk/test/servers/tomcat6/pom.xml
===================================================================
--- components/pc/trunk/test/servers/tomcat6/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/test/servers/tomcat6/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-tomcat6</artifactId>
Modified: components/pc/trunk/test/servers/tomcat7/pom.xml
===================================================================
--- components/pc/trunk/test/servers/tomcat7/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
+++ components/pc/trunk/test/servers/tomcat7/pom.xml 2012-02-02 20:43:04 UTC (rev 8370)
@@ -2,7 +2,7 @@
<parent>
<groupId>org.gatein.pc</groupId>
<artifactId>pc-test-servers</artifactId>
- <version>2.3.1-GA-SNAPSHOT</version>
+ <version>2.3.1-Beta01</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>pc-test-tomcat7</artifactId>
12 years, 11 months
gatein SVN: r8369 - components/pc/trunk.
by do-not-reply@jboss.org
Author: julien_viet
Date: 2012-02-02 15:29:53 -0500 (Thu, 02 Feb 2012)
New Revision: 8369
Modified:
components/pc/trunk/pom.xml
Log:
GTNPC-79: Update WCI dependency to 2.1.1-Beta02
Modified: components/pc/trunk/pom.xml
===================================================================
--- components/pc/trunk/pom.xml 2012-02-02 20:13:43 UTC (rev 8368)
+++ components/pc/trunk/pom.xml 2012-02-02 20:29:53 UTC (rev 8369)
@@ -56,7 +56,7 @@
<properties>
<version.gatein.common>2.0.4-GA</version.gatein.common>
- <version.gatein.wci>2.1.0-GA</version.gatein.wci>
+ <version.gatein.wci>2.1.1-Beta02</version.gatein.wci>
<version.apache.portals.bridges>1.0.4</version.apache.portals.bridges>
<version.apache.taglibs>1.1.2</version.apache.taglibs>
<version.apache.log4j>1.2.14</version.apache.log4j>
12 years, 11 months
gatein SVN: r8368 - components/wsrp/trunk.
by do-not-reply@jboss.org
Author: chris.laprun(a)jboss.com
Date: 2012-02-02 15:13:43 -0500 (Thu, 02 Feb 2012)
New Revision: 8368
Modified:
components/wsrp/trunk/pom.xml
Log:
- Updated to Chromattic 1.1.2.
Modified: components/wsrp/trunk/pom.xml
===================================================================
--- components/wsrp/trunk/pom.xml 2012-02-02 20:00:54 UTC (rev 8367)
+++ components/wsrp/trunk/pom.xml 2012-02-02 20:13:43 UTC (rev 8368)
@@ -1,6 +1,6 @@
<!--
~ JBoss, a division of Red Hat
- ~ Copyright 2011, Red Hat Middleware, LLC, and individual
+ ~ Copyright 2012, Red Hat Middleware, LLC, and individual
~ contributors as indicated by the @authors tag. See the
~ copyright.txt in the distribution for a full listing of
~ individual contributors.
@@ -61,7 +61,7 @@
<jsf.version>1.2_12</jsf.version>
<javax.xml.ws.version>2.1</javax.xml.ws.version>
<javax.xml.soap.saaj.version>1.3</javax.xml.soap.saaj.version>
- <org.chromattic.version>1.1.1</org.chromattic.version>
+ <org.chromattic.version>1.1.2</org.chromattic.version>
<org.jboss.arquillian.version>1.0.0.Alpha2</org.jboss.arquillian.version>
<org.mockito.version>1.8.5</org.mockito.version>
</properties>
12 years, 11 months