[jboss-cvs] JBossAS SVN: r83959 - in projects/ejb3/trunk/docs/tutorial: common and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Feb 6 08:43:12 EST 2009


Author: jaikiran
Date: 2009-02-06 08:43:12 -0500 (Fri, 06 Feb 2009)
New Revision: 83959

Modified:
   projects/ejb3/trunk/docs/tutorial/build/pom.xml
   projects/ejb3/trunk/docs/tutorial/common/pom.xml
   projects/ejb3/trunk/docs/tutorial/init/pom.xml
Log:
EJBTHREE-1607 Reverting the SNAPSHOT dependency updates that were done during release. Releasing the jboss-ejb3-tutorial-common has problems because Maven runs the verify phase during release, and the jboss-ejb3-tutorial-common fails since it requires AS to be started

Modified: projects/ejb3/trunk/docs/tutorial/build/pom.xml
===================================================================
--- projects/ejb3/trunk/docs/tutorial/build/pom.xml	2009-02-06 13:22:06 UTC (rev 83958)
+++ projects/ejb3/trunk/docs/tutorial/build/pom.xml	2009-02-06 13:43:12 UTC (rev 83959)
@@ -36,7 +36,7 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.ejb3</groupId>
   <artifactId>jboss-ejb3-tutorial-build</artifactId>
-  <version>0.1.1-SNAPSHOT</version>
+  <version>0.1.0-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>JBoss EJB3 Tutorial Build</name>
   <url>http://labs.jboss.com/jbossejb3/</url>

Modified: projects/ejb3/trunk/docs/tutorial/common/pom.xml
===================================================================
--- projects/ejb3/trunk/docs/tutorial/common/pom.xml	2009-02-06 13:22:06 UTC (rev 83958)
+++ projects/ejb3/trunk/docs/tutorial/common/pom.xml	2009-02-06 13:43:12 UTC (rev 83959)
@@ -1,11 +1,5 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- 
-  The common parent pom that will be used by the EJB3 tutorials.
+<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">
 
--->
-<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">
-
 	<properties>
 		<!--  Comma delimited files which need to be deployed. The order in which the files will be deployed
 		will be the same as they appear in this property value. Each tutorial can override this value. The default
@@ -17,14 +11,14 @@
 			Note that, since this is a space-delimited list, we won't support (as of now) argument value having a space
 			(We don't have a use-case to support this, right now, so let's keep this simple)
 		  -->
-		<jboss.ejb3.tutorial.client.args></jboss.ejb3.tutorial.client.args>
+		<jboss.ejb3.tutorial.client.args />
 
 		<!--  A space-delimited list of JVM arguments to be passed to the ${ejb3.tutorial.client}
 			Individual tutorial can provide their own value for this property. By default its empty.
 			Note that, since this is a space-delimited list, we won't support (as of now) argument value having a space
 			(We don't have a use-case to support this, right now, so let's keep this simple)
 		  -->
-		<jboss.ejb3.tutorial.client.jvmargs></jboss.ejb3.tutorial.client.jvmargs>
+		<jboss.ejb3.tutorial.client.jvmargs />
 		
 	  	<!--  Versions -->
 	    <version.maven-jboss-as-control-plugin>0.1.1</version.maven-jboss-as-control-plugin>
@@ -143,17 +137,17 @@
 		              		<tasks unless="jboss.ejb3.tutorial.client.skip">
 		              			<!--  The classpath for the tutorial client -->
 		              			<path id="ejb3.tutorial.classpath">
-			      					<pathelement location="${build.outputDirectory}"/>
+			      					<pathelement location="${build.outputDirectory}" />
 		   						</path>
 		   						<!--  Individual tutorials are expected to set the ejb3.tutorial.client property -->
 		   						<echo message="*********************************** JBoss EJB3 Tutorials ***********************************" />
 		   						<echo message="**** Running ${ejb3.tutorial.client} ${jboss.ejb3.tutorial.client.args}" />
 		   						<java classname="${ejb3.tutorial.client}" fork="yes" dir="." failonerror="true">
-		         					<classpath refid="ejb3.tutorial.classpath"/>
-		         					<classpath refid="maven.runtime.classpath"/>
+		         					<classpath refid="ejb3.tutorial.classpath" />
+		         					<classpath refid="maven.runtime.classpath" />
 		         					<!-- Command line argument(s) -->
-		         					<arg line="${jboss.ejb3.tutorial.client.args}"/>
-		         					<jvmarg line="${jboss.ejb3.tutorial.client.jvmargs}"/>
+		         					<arg line="${jboss.ejb3.tutorial.client.args}" />
+		         					<jvmarg line="${jboss.ejb3.tutorial.client.jvmargs}" />
 		      					</java>
 		      					<echo message="********************************************************************************************" />
 		              		</tasks>
@@ -238,4 +232,10 @@
   	
 	</dependencies>
   
+
+  <scm>
+    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/tags/(org.jboss.ejb3:jboss-ejb3-tutorial-common) jboss-ejb3-tutorial-common-0.1.0</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/ejb3/tags/(org.jboss.ejb3:jboss-ejb3-tutorial-common) jboss-ejb3-tutorial-common-0.1.0</developerConnection>
+    <url>http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/tags/(org.jboss.ejb3:jboss-ejb3-tutorial-common) jboss-ejb3-tutorial-common-0.1.0</url>
+  </scm>
 </project>

Modified: projects/ejb3/trunk/docs/tutorial/init/pom.xml
===================================================================
--- projects/ejb3/trunk/docs/tutorial/init/pom.xml	2009-02-06 13:22:06 UTC (rev 83958)
+++ projects/ejb3/trunk/docs/tutorial/init/pom.xml	2009-02-06 13:43:12 UTC (rev 83959)
@@ -18,7 +18,7 @@
   <parent>
     <groupId>org.jboss.ejb3</groupId>
     <artifactId>jboss-ejb3-tutorial-build</artifactId>
-    <version>0.1.0</version>
+    <version>0.1.0-SNAPSHOT</version>
     <relativePath>../build</relativePath>
   </parent>
 
@@ -27,7 +27,7 @@
 
 
   <artifactId>jboss-ejb3-tutorial-init</artifactId>
-  <version>0.1.1-SNAPSHOT</version>
+  <version>0.1.0-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>EJB3 Tutorial Init</name>
   <url>http://labs.jboss.com/jbossejb3/</url>




More information about the jboss-cvs-commits mailing list