You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by bi...@apache.org on 2011/07/11 03:23:37 UTC

svn commit: r1145006 - in /maven/jxr/trunk/maven-jxr-plugin: pom.xml src/it/aggregate/pom.xml

Author: bimargulies
Date: Mon Jul 11 01:23:37 2011
New Revision: 1145006

URL: http://svn.apache.org/viewvc?rev=1145006&view=rev
Log:
JXR-88: jxr:aggregate and jxr:test-aggregate
o some debugging support.

Modified:
    maven/jxr/trunk/maven-jxr-plugin/pom.xml
    maven/jxr/trunk/maven-jxr-plugin/src/it/aggregate/pom.xml

Modified: maven/jxr/trunk/maven-jxr-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/jxr/trunk/maven-jxr-plugin/pom.xml?rev=1145006&r1=1145005&r2=1145006&view=diff
==============================================================================
--- maven/jxr/trunk/maven-jxr-plugin/pom.xml (original)
+++ maven/jxr/trunk/maven-jxr-plugin/pom.xml Mon Jul 11 01:23:37 2011
@@ -130,7 +130,7 @@ under the License.
     <dependency>
       <groupId>org.apache.maven.wagon</groupId>
       <artifactId>wagon-provider-api</artifactId>
-      <version>1.0-beta-2</version>
+      <version>1.0</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.doxia</groupId>

Modified: maven/jxr/trunk/maven-jxr-plugin/src/it/aggregate/pom.xml
URL: http://svn.apache.org/viewvc/maven/jxr/trunk/maven-jxr-plugin/src/it/aggregate/pom.xml?rev=1145006&r1=1145005&r2=1145006&view=diff
==============================================================================
--- maven/jxr/trunk/maven-jxr-plugin/src/it/aggregate/pom.xml (original)
+++ maven/jxr/trunk/maven-jxr-plugin/src/it/aggregate/pom.xml Mon Jul 11 01:23:37 2011
@@ -30,6 +30,11 @@ under the License.
   <name>aggregate</name>
   <url>http://maven.apache.org</url>
 
+  <properties>
+    <jxr-plugin-version>@pom.version@</jxr-plugin-version>
+    <site-plugin-version>@sitePluginVersion@</site-plugin-version>
+  </properties>
+
   <dependencies>
     <dependency>
       <groupId>junit</groupId>
@@ -44,18 +49,19 @@ under the License.
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jxr-plugin</artifactId>
-        <version>@pom.version@</version>
+        <version>${jxr-plugin-version}</version>
 	<executions>
 	  <execution>
-	    <id>jxr</id>
+	    <id>aggregate</id>
 	    <goals><goal>aggregate</goal></goals>
+	    <phase>site</phase>
 	  </execution>
 	</executions>
       </plugin>    
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
-        <version>@sitePluginVersion@</version>
+        <version>${site-plugin-version}</version>
       </plugin>
     </plugins>
   </build>