You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2007/08/21 21:28:58 UTC

svn commit: r568243 - in /myfaces/orchestra/trunk: core/pom.xml examples/pom.xml pom.xml

Author: imario
Date: Tue Aug 21 12:28:57 2007
New Revision: 568243

URL: http://svn.apache.org/viewvc?rev=568243&view=rev
Log:
moved version references to parent pom - should ease the release procedure then

Modified:
    myfaces/orchestra/trunk/core/pom.xml
    myfaces/orchestra/trunk/examples/pom.xml
    myfaces/orchestra/trunk/pom.xml

Modified: myfaces/orchestra/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/pom.xml?rev=568243&r1=568242&r2=568243&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/pom.xml (original)
+++ myfaces/orchestra/trunk/core/pom.xml Tue Aug 21 12:28:57 2007
@@ -126,7 +126,7 @@
 								<artifactItem>
 									<groupId>org.apache.myfaces.shared</groupId>
 									<artifactId>myfaces-shared-orchestra</artifactId>
-									<version>${myfaces-shared.version}</version>
+									<version>${myfaces-orchestra-shared.version}</version>
 									<classifier>sources</classifier>
 								</artifactItem>
 							</artifactItems>

Modified: myfaces/orchestra/trunk/examples/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/examples/pom.xml?rev=568243&r1=568242&r2=568243&view=diff
==============================================================================
--- myfaces/orchestra/trunk/examples/pom.xml (original)
+++ myfaces/orchestra/trunk/examples/pom.xml Tue Aug 21 12:28:57 2007
@@ -58,17 +58,15 @@
 		<dependency>
 			<groupId>org.apache.myfaces.core</groupId>
 			<artifactId>myfaces-api</artifactId>
-			<version>1.1.6-SNAPSHOT</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.myfaces.core</groupId>
 			<artifactId>myfaces-impl</artifactId>
-			<version>1.1.6-SNAPSHOT</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.myfaces.tomahawk</groupId>
 			<artifactId>tomahawk</artifactId>
-			<version>1.1.5-SNAPSHOT</version>
+			<version>${tomahawk.version}</version>
 		</dependency>
 		<dependency>
 			<groupId>org.apache.myfaces.tomahawk</groupId>

Modified: myfaces/orchestra/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/pom.xml?rev=568243&r1=568242&r2=568243&view=diff
==============================================================================
--- myfaces/orchestra/trunk/pom.xml (original)
+++ myfaces/orchestra/trunk/pom.xml Tue Aug 21 12:28:57 2007
@@ -57,9 +57,15 @@
 			</dependency>
 
 			<dependency>
+				<groupId>org.apache.myfaces.core</groupId>
+				<artifactId>myfaces-impl</artifactId>
+				<version>${myfaces.version}</version>
+			</dependency>
+
+			<dependency>
 				<groupId>org.apache.myfaces.shared</groupId>
 				<artifactId>myfaces-shared-orchestra</artifactId>
-				<version>${myfaces-shared.version}</version>
+				<version>${myfaces-orchestra-shared.version}</version>
 			</dependency>
 		</dependencies>
 	</dependencyManagement>
@@ -165,8 +171,10 @@
 	</build>
 
 	<properties>
-		<myfaces.version>1.1.6-SNAPSHOT</myfaces.version>
-		<myfaces-shared.version>2.0.6-SNAPSHOT</myfaces-shared.version>
+		<!-- ensure to not to point to a snapshot version during release -->
+		<myfaces.version>1.1.5</myfaces.version>
+		<tomahawk.version>1.1.6</tomahawk.version>
+		<myfaces-orchestra-shared.version>2.0.6-SNAPSHOT</myfaces-orchestra-shared.version>
 	</properties>
 
 </project>