You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2008/03/23 03:51:26 UTC

svn commit: r640140 - in /maven/plugins/trunk: ./ maven-eclipse-plugin/src/test/resources/projects/project-34/multymodule-3/ maven-eclipse-plugin/src/test/resources/projects/project-35/multymodule-ear/ maven-war-plugin/src/it/MWAR-129/

Author: brianf
Date: Sat Mar 22 19:51:23 2008
New Revision: 640140

URL: http://svn.apache.org/viewvc?rev=640140&view=rev
Log:
fixing the deprecated property syntax

Modified:
    maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-34/multymodule-3/pom.xml
    maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-35/multymodule-ear/pom.xml
    maven/plugins/trunk/maven-war-plugin/src/it/MWAR-129/pom.xml
    maven/plugins/trunk/pom.xml

Modified: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-34/multymodule-3/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-34/multymodule-3/pom.xml?rev=640140&r1=640139&r2=640140&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-34/multymodule-3/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-34/multymodule-3/pom.xml Sat Mar 22 19:51:23 2008
@@ -20,7 +20,7 @@
 					<defaultLibBundleDir>lib</defaultLibBundleDir>
 					<modules>
 						<webModule>
-							<groupId>${groupId}</groupId>
+							<groupId>${project.groupId}</groupId>
 							<artifactId>multymodule-2</artifactId>
 							<contextRoot>/multymodule-2-${project.version}</contextRoot>
 						</webModule>

Modified: maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-35/multymodule-ear/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-35/multymodule-ear/pom.xml?rev=640140&r1=640139&r2=640140&view=diff
==============================================================================
--- maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-35/multymodule-ear/pom.xml (original)
+++ maven/plugins/trunk/maven-eclipse-plugin/src/test/resources/projects/project-35/multymodule-ear/pom.xml Sat Mar 22 19:51:23 2008
@@ -20,7 +20,7 @@
 					<defaultLibBundleDir>lib</defaultLibBundleDir>
 					<modules>
 						<webModule>
-							<groupId>${groupId}</groupId>
+							<groupId>${project.groupId}</groupId>
 							<artifactId>multymodule-war</artifactId>
 							<contextRoot>/somethingVeryDifferent</contextRoot>
 						</webModule>
@@ -31,7 +31,7 @@
 	</build>
 	<dependencies>
 		<dependency>
-			<groupId>${groupId}</groupId>
+			<groupId>${project.groupId}</groupId>
 			<artifactId>multymodule-war</artifactId>
 			<version>1.0</version>
 			<type>war</type>

Modified: maven/plugins/trunk/maven-war-plugin/src/it/MWAR-129/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-war-plugin/src/it/MWAR-129/pom.xml?rev=640140&r1=640139&r2=640140&view=diff
==============================================================================
--- maven/plugins/trunk/maven-war-plugin/src/it/MWAR-129/pom.xml (original)
+++ maven/plugins/trunk/maven-war-plugin/src/it/MWAR-129/pom.xml Sat Mar 22 19:51:23 2008
@@ -64,7 +64,7 @@
         </includes>
       </testResource>
     </testResources>
-    <finalName>${artifactId}</finalName>
+    <finalName>${project.artifactId}</finalName>
     <plugins>
       <plugin>
         <artifactId>maven-war-plugin</artifactId>

Modified: maven/plugins/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/pom.xml?rev=640140&r1=640139&r2=640140&view=diff
==============================================================================
--- maven/plugins/trunk/pom.xml (original)
+++ maven/plugins/trunk/pom.xml Sat Mar 22 19:51:23 2008
@@ -175,7 +175,7 @@
         <plugin>
           <artifactId>maven-site-plugin</artifactId>
           <configuration>
-            <stagingSiteURL>scp://people.apache.org/www/maven.apache.org/plugins/${artifactId}-${version}</stagingSiteURL>
+            <stagingSiteURL>scp://people.apache.org/www/maven.apache.org/plugins/${project.artifactId}-${project.version}</stagingSiteURL>
           </configuration>
         </plugin>
         <plugin>