[jboss-cvs] Repository SVN: r27164 - in maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build: 1.1.1 and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon May 11 05:18:42 EDT 2009


Author: jaikiran
Date: 2009-05-11 05:18:42 -0400 (Mon, 11 May 2009)
New Revision: 27164

Added:
   maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/1.1.1/
   maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/1.1.1/jboss-ejb3-tutorial-build-1.1.1.pom
   maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/1.1.1/jboss-ejb3-tutorial-build-1.1.1.pom.md5
   maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/1.1.1/jboss-ejb3-tutorial-build-1.1.1.pom.sha1
Modified:
   maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/maven-metadata.xml
   maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/maven-metadata.xml.md5
   maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/maven-metadata.xml.sha1
Log:
Release the tutorial artifacts to be compatible with AS 5.1.0 CR1

Added: maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/1.1.1/jboss-ejb3-tutorial-build-1.1.1.pom
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/1.1.1/jboss-ejb3-tutorial-build-1.1.1.pom	                        (rev 0)
+++ maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/1.1.1/jboss-ejb3-tutorial-build-1.1.1.pom	2009-05-11 09:18:42 UTC (rev 27164)
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  The parent maven for the ejb3 tutorials 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">
+
+
+  <properties>
+	  	<!--  The jboss.home "intermediate" property would not have been necessary, if
+	  	Maven's enforcer plugin supported enforcing setting of a "System" environment variable.
+	  	Details here http://markmail.org/message/jwfmtrjesuyag7bh
+
+	  	This intermediate property is a workaround to use in the enforcer plugin to ensure that
+	  	the JBOSS_HOME is set. And now that we have an intermediate jboss.home, let's use this throughout
+	  	the pom instead of JBOSS_HOME.
+	  	 -->
+	  	<jboss.home>${JBOSS_HOME}</jboss.home>
+	  	<!--  The JBoss server profile which will be used by the tutorials for
+		deploying the application. Individual tutorials can override this value
+		in their pom.xml depending on their need. -->
+	    <jboss.server.config>all</jboss.server.config>
+
+
+      <version.org.jboss.jbossas_jboss-as-client>5.1.0.CR1</version.org.jboss.jbossas_jboss-as-client>
+
+  	</properties>
+  <!-- Parent - The jboss-ejb3-build will act as a parent
+
+   -->
+
+  <parent>
+    <groupId>org.jboss.ejb3</groupId>
+    <artifactId>jboss-ejb3-build</artifactId>
+    <version>1.0.0-Beta10</version>
+  </parent>
+
+
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.ejb3</groupId>
+  <artifactId>jboss-ejb3-tutorial-build</artifactId>
+  <version>1.1.1</version>
+  <packaging>pom</packaging>
+  <name>JBoss EJB3 Tutorial Build</name>
+  <url>http://labs.jboss.com/jbossejb3/</url>
+
+
+
+	<build>
+		<plugins>
+			<!-- Plugin to enforce JBOSS_HOME is set -->
+      		<plugin>
+        		<groupId>org.apache.maven.plugins</groupId>
+        		<artifactId>maven-enforcer-plugin</artifactId>
+        		<executions>
+          			<execution>
+            			<id>enforce-property</id>
+            			<!--  We need to enforce this when we use JBossAS during deploying the
+            			tutorial in pre-integration-test phase. See common/pom.xml for details -->
+						<phase>pre-integration-test</phase>
+            			<goals>
+              				<goal>enforce</goal>
+            			</goals>
+            			<configuration>
+	              			<rules>
+	                			<requireProperty>
+	                  				<property>jboss.home</property>
+	                  				<message>"Please set JBOSS_HOME"</message>
+				                </requireProperty>
+	            			</rules>
+	            			<fail>true</fail>
+            			</configuration>
+		          </execution>
+        		</executions>
+      		</plugin>
+
+      	</plugins>
+	</build>
+  <!-- Dependency management -->
+  <dependencyManagement>
+    <dependencies>
+    <dependency>
+            <groupId>org.jboss.jbossas</groupId>
+            <artifactId>jboss-as-client</artifactId>
+            <version>${version.org.jboss.jbossas_jboss-as-client}</version>
+            <type>pom</type>
+    </dependency>
+      
+    </dependencies>
+  </dependencyManagement>
+
+  <scm>
+    <connection>scm:svn:http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-tutorial-build-1.1.1</connection>
+    <developerConnection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-tutorial-build-1.1.1</developerConnection>
+    <url>http://anonsvn.jboss.org/repos/jbossas/projects/ejb3/tags/jboss-ejb3-tutorial-build-1.1.1</url>
+  </scm>
+</project>

Added: maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/1.1.1/jboss-ejb3-tutorial-build-1.1.1.pom.md5
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/1.1.1/jboss-ejb3-tutorial-build-1.1.1.pom.md5	                        (rev 0)
+++ maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/1.1.1/jboss-ejb3-tutorial-build-1.1.1.pom.md5	2009-05-11 09:18:42 UTC (rev 27164)
@@ -0,0 +1 @@
+188d8a7ecaa15e58a04edbbc47ad2515
\ No newline at end of file

Added: maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/1.1.1/jboss-ejb3-tutorial-build-1.1.1.pom.sha1
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/1.1.1/jboss-ejb3-tutorial-build-1.1.1.pom.sha1	                        (rev 0)
+++ maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/1.1.1/jboss-ejb3-tutorial-build-1.1.1.pom.sha1	2009-05-11 09:18:42 UTC (rev 27164)
@@ -0,0 +1 @@
+2e2fbc2a8ef2c5f621abcf51881fda6a2e33d389
\ No newline at end of file

Modified: maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/maven-metadata.xml
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/maven-metadata.xml	2009-05-11 06:18:42 UTC (rev 27163)
+++ maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/maven-metadata.xml	2009-05-11 09:18:42 UTC (rev 27164)
@@ -3,11 +3,12 @@
   <artifactId>jboss-ejb3-tutorial-build</artifactId>
   <version>0.1.0</version>
   <versioning>
-    <release>1.1.0</release>
+    <release>1.1.1</release>
     <versions>
       <version>0.1.0</version>
       <version>1.1.0</version>
+      <version>1.1.1</version>
     </versions>
-    <lastUpdated>20090306124119</lastUpdated>
+    <lastUpdated>20090511091716</lastUpdated>
   </versioning>
 </metadata>
\ No newline at end of file

Modified: maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/maven-metadata.xml.md5
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/maven-metadata.xml.md5	2009-05-11 06:18:42 UTC (rev 27163)
+++ maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/maven-metadata.xml.md5	2009-05-11 09:18:42 UTC (rev 27164)
@@ -1 +1 @@
-2120228b326c21a60ccb7628dd003b91
\ No newline at end of file
+da24483e7c4e95c9b043583193180cb5
\ No newline at end of file

Modified: maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/maven-metadata.xml.sha1
===================================================================
--- maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/maven-metadata.xml.sha1	2009-05-11 06:18:42 UTC (rev 27163)
+++ maven2/org/jboss/ejb3/jboss-ejb3-tutorial-build/maven-metadata.xml.sha1	2009-05-11 09:18:42 UTC (rev 27164)
@@ -1 +1 @@
-b9ded11493c4f783e2897c45e7937dc806f5cfd6
\ No newline at end of file
+325eacaa73843c5fc617d931d3fa5b8a895b37fb
\ No newline at end of file




More information about the jboss-cvs-commits mailing list