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/17 15:49:36 UTC

svn commit: r1147613 - in /maven/jxr/trunk: maven-jxr-plugin/pom.xml maven-jxr/pom.xml pom.xml

Author: bimargulies
Date: Sun Jul 17 13:49:35 2011
New Revision: 1147613

URL: http://svn.apache.org/viewvc?rev=1147613&view=rev
Log:
Copy more configuration from the standard plugin parent to see if I can't fix up the site issues that Hervé
pointed out. This is certainly not all the fixes needed.

Modified:
    maven/jxr/trunk/maven-jxr-plugin/pom.xml
    maven/jxr/trunk/maven-jxr/pom.xml
    maven/jxr/trunk/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=1147613&r1=1147612&r2=1147613&view=diff
==============================================================================
--- maven/jxr/trunk/maven-jxr-plugin/pom.xml (original)
+++ maven/jxr/trunk/maven-jxr-plugin/pom.xml Sun Jul 17 13:49:35 2011
@@ -48,7 +48,7 @@ under the License.
 
   <properties>
     <mavenVersion>2.0.9</mavenVersion>
-    <sitePluginVersion>2.2</sitePluginVersion>
+    <sitePluginVersion>2.3</sitePluginVersion>
     <doxia-sitetoolsVersion>1.2</doxia-sitetoolsVersion>
     <doxiaVersion>1.2</doxiaVersion>
   </properties>
@@ -73,10 +73,6 @@ under the License.
      <forkMode>always</forkMode>
     </configuration>
    </plugin>
-   <plugin>
-    <artifactId>maven-site-plugin</artifactId>
-    <version>${sitePluginVersion}</version>
-   </plugin>
   </plugins>
  </pluginManagement>
 
@@ -84,6 +80,7 @@ under the License.
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-plugin-plugin</artifactId>
+	<version>2.8</version>
         <executions>
           <execution>
             <id>generated-helpmojo</id>
@@ -185,6 +182,7 @@ under the License.
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-plugin-plugin</artifactId>
+	<version>2.8</version>
       </plugin>
     </plugins>
   </reporting>
@@ -235,7 +233,7 @@ under the License.
         </file>
       </activation>
       <properties>
-        <sitePluginVersion>3.0-beta-1-SNAPSHOT</sitePluginVersion>
+        <sitePluginVersion>3.0-beta-4-SNAPSHOT</sitePluginVersion>
       </properties>
     </profile>
 
@@ -246,13 +244,13 @@ under the License.
           <plugin>
             <groupId>org.apache.maven.plugins</groupId>
             <artifactId>maven-javadoc-plugin</artifactId>
-            <version>2.5</version>
+            <version>2.8</version>
             <configuration>
               <tagletArtifacts>
                 <tagletArtifact>
                   <groupId>org.apache.maven.plugin-tools</groupId>
                   <artifactId>maven-plugin-tools-javadoc</artifactId>
-                  <version>2.5</version>
+                  <version>2.8</version>
                 </tagletArtifact>
                 <tagletArtifact>
                   <groupId>org.codehaus.plexus</groupId>

Modified: maven/jxr/trunk/maven-jxr/pom.xml
URL: http://svn.apache.org/viewvc/maven/jxr/trunk/maven-jxr/pom.xml?rev=1147613&r1=1147612&r2=1147613&view=diff
==============================================================================
--- maven/jxr/trunk/maven-jxr/pom.xml (original)
+++ maven/jxr/trunk/maven-jxr/pom.xml Sun Jul 17 13:49:35 2011
@@ -101,6 +101,7 @@ under the License.
     </site>
   </distributionManagement>
 
+
   <dependencies>
     <dependency>
       <groupId>junit</groupId>

Modified: maven/jxr/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/jxr/trunk/pom.xml?rev=1147613&r1=1147612&r2=1147613&view=diff
==============================================================================
--- maven/jxr/trunk/pom.xml (original)
+++ maven/jxr/trunk/pom.xml Sun Jul 17 13:49:35 2011
@@ -60,6 +60,7 @@ under the License.
       <dependency>
 	<groupId>junit</groupId>
 	<artifactId>junit</artifactId>
+	<scope>test</scope>
 	<version>4.8.2</version>
       </dependency>
     </dependencies>
@@ -69,6 +70,13 @@ under the License.
     <pluginManagement>
       <plugins>
         <plugin>
+          <artifactId>maven-site-plugin</artifactId>
+	  <version>2.3</version>
+          <configuration>
+            <stagingSiteURL>scp://people.apache.org/www/maven.apache.org/jxr/${project.artifactId}-${project.version}</stagingSiteURL>
+          </configuration>
+        </plugin>
+        <plugin>
           <artifactId>maven-release-plugin</artifactId>
           <configuration>
             <tagBase>https://svn.apache.org/repos/asf/maven/jxr/tags</tagBase>



Re: svn commit: r1147613 - in /maven/jxr/trunk: maven-jxr-plugin/pom.xml maven-jxr/pom.xml pom.xml

Posted by Benson Margulies <bi...@gmail.com>.
Lukas,

My brain hurts.

I republished http://maven.apache.org/staging/plugins/maven-jxr-plugin/
from the tag via

/opt/apache-maven-2.2.1/bin/mvn clean install site site:stage-deploy -Preporting

I bumped site plugin to 2.3 to avoid authentication issues.

plugin-info.html is still missing in there.




On Sun, Jul 17, 2011 at 10:54 AM, Lukas Theussl <lt...@apache.org> wrote:
>
> Benson: I have locally built and staged the site before and after this
> commit and I don't see any of the mentioned issues. Have you actually
> checked your local site? Did you run the site phase or the site:site goal?
> Anyway, with site-plugin-2.3 the locally built and stage(-deployed) sites
> should be completely identical.
>
> -Lukas
>
>
> bimargulies@apache.org wrote:
>>
>> Author: bimargulies
>> Date: Sun Jul 17 13:49:35 2011
>> New Revision: 1147613
>>
>> URL: http://svn.apache.org/viewvc?rev=1147613&view=rev
>> Log:
>> Copy more configuration from the standard plugin parent to see if I can't
>> fix up the site issues that Hervé
>> pointed out. This is certainly not all the fixes needed.
>>
>> Modified:
>>     maven/jxr/trunk/maven-jxr-plugin/pom.xml
>>     maven/jxr/trunk/maven-jxr/pom.xml
>>     maven/jxr/trunk/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=1147613&r1=1147612&r2=1147613&view=diff
>>
>> ==============================================================================
>> --- maven/jxr/trunk/maven-jxr-plugin/pom.xml (original)
>> +++ maven/jxr/trunk/maven-jxr-plugin/pom.xml Sun Jul 17 13:49:35 2011
>> @@ -48,7 +48,7 @@ under the License.
>>
>>    <properties>
>>      <mavenVersion>2.0.9</mavenVersion>
>> -<sitePluginVersion>2.2</sitePluginVersion>
>> +<sitePluginVersion>2.3</sitePluginVersion>
>>      <doxia-sitetoolsVersion>1.2</doxia-sitetoolsVersion>
>>      <doxiaVersion>1.2</doxiaVersion>
>>    </properties>
>> @@ -73,10 +73,6 @@ under the License.
>>       <forkMode>always</forkMode>
>>      </configuration>
>>     </plugin>
>> -<plugin>
>> -<artifactId>maven-site-plugin</artifactId>
>> -<version>${sitePluginVersion}</version>
>> -</plugin>
>>    </plugins>
>>   </pluginManagement>
>>
>> @@ -84,6 +80,7 @@ under the License.
>>        <plugin>
>>          <groupId>org.apache.maven.plugins</groupId>
>>          <artifactId>maven-plugin-plugin</artifactId>
>> +       <version>2.8</version>
>>          <executions>
>>            <execution>
>>              <id>generated-helpmojo</id>
>> @@ -185,6 +182,7 @@ under the License.
>>        <plugin>
>>          <groupId>org.apache.maven.plugins</groupId>
>>          <artifactId>maven-plugin-plugin</artifactId>
>> +       <version>2.8</version>
>>        </plugin>
>>      </plugins>
>>    </reporting>
>> @@ -235,7 +233,7 @@ under the License.
>>          </file>
>>        </activation>
>>        <properties>
>> -<sitePluginVersion>3.0-beta-1-SNAPSHOT</sitePluginVersion>
>> +<sitePluginVersion>3.0-beta-4-SNAPSHOT</sitePluginVersion>
>>        </properties>
>>      </profile>
>>
>> @@ -246,13 +244,13 @@ under the License.
>>            <plugin>
>>              <groupId>org.apache.maven.plugins</groupId>
>>              <artifactId>maven-javadoc-plugin</artifactId>
>> -<version>2.5</version>
>> +<version>2.8</version>
>>              <configuration>
>>                <tagletArtifacts>
>>                  <tagletArtifact>
>>                    <groupId>org.apache.maven.plugin-tools</groupId>
>>                    <artifactId>maven-plugin-tools-javadoc</artifactId>
>> -<version>2.5</version>
>> +<version>2.8</version>
>>                  </tagletArtifact>
>>                  <tagletArtifact>
>>                    <groupId>org.codehaus.plexus</groupId>
>>
>> Modified: maven/jxr/trunk/maven-jxr/pom.xml
>> URL:
>> http://svn.apache.org/viewvc/maven/jxr/trunk/maven-jxr/pom.xml?rev=1147613&r1=1147612&r2=1147613&view=diff
>>
>> ==============================================================================
>> --- maven/jxr/trunk/maven-jxr/pom.xml (original)
>> +++ maven/jxr/trunk/maven-jxr/pom.xml Sun Jul 17 13:49:35 2011
>> @@ -101,6 +101,7 @@ under the License.
>>      </site>
>>    </distributionManagement>
>>
>> +
>>    <dependencies>
>>      <dependency>
>>        <groupId>junit</groupId>
>>
>> Modified: maven/jxr/trunk/pom.xml
>> URL:
>> http://svn.apache.org/viewvc/maven/jxr/trunk/pom.xml?rev=1147613&r1=1147612&r2=1147613&view=diff
>>
>> ==============================================================================
>> --- maven/jxr/trunk/pom.xml (original)
>> +++ maven/jxr/trunk/pom.xml Sun Jul 17 13:49:35 2011
>> @@ -60,6 +60,7 @@ under the License.
>>        <dependency>
>>        <groupId>junit</groupId>
>>        <artifactId>junit</artifactId>
>> +       <scope>test</scope>
>>        <version>4.8.2</version>
>>        </dependency>
>>      </dependencies>
>> @@ -69,6 +70,13 @@ under the License.
>>      <pluginManagement>
>>        <plugins>
>>          <plugin>
>> +<artifactId>maven-site-plugin</artifactId>
>> +       <version>2.3</version>
>> +<configuration>
>>
>> +<stagingSiteURL>scp://people.apache.org/www/maven.apache.org/jxr/${project.artifactId}-${project.version}</stagingSiteURL>
>> +</configuration>
>> +</plugin>
>> +<plugin>
>>            <artifactId>maven-release-plugin</artifactId>
>>            <configuration>
>>
>>  <tagBase>https://svn.apache.org/repos/asf/maven/jxr/tags</tagBase>
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


Re: svn commit: r1147613 - in /maven/jxr/trunk: maven-jxr-plugin/pom.xml maven-jxr/pom.xml pom.xml

Posted by Benson Margulies <bi...@gmail.com>.
Lukas,

I'm beginning to think that I did something specially stupid when I
staged the site for the vote, like forget -Preporting. On the other
hand, the additional commentary on the deprecated parameter wasn't
there until about 2 minutes ago.

I'm going to go to target/checkout and redo things and see what pops out.

--benson


On Sun, Jul 17, 2011 at 10:54 AM, Lukas Theussl <lt...@apache.org> wrote:
>
> Benson: I have locally built and staged the site before and after this
> commit and I don't see any of the mentioned issues. Have you actually
> checked your local site? Did you run the site phase or the site:site goal?
> Anyway, with site-plugin-2.3 the locally built and stage(-deployed) sites
> should be completely identical.
>
> -Lukas
>
>
> bimargulies@apache.org wrote:
>>
>> Author: bimargulies
>> Date: Sun Jul 17 13:49:35 2011
>> New Revision: 1147613
>>
>> URL: http://svn.apache.org/viewvc?rev=1147613&view=rev
>> Log:
>> Copy more configuration from the standard plugin parent to see if I can't
>> fix up the site issues that Hervé
>> pointed out. This is certainly not all the fixes needed.
>>
>> Modified:
>>     maven/jxr/trunk/maven-jxr-plugin/pom.xml
>>     maven/jxr/trunk/maven-jxr/pom.xml
>>     maven/jxr/trunk/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=1147613&r1=1147612&r2=1147613&view=diff
>>
>> ==============================================================================
>> --- maven/jxr/trunk/maven-jxr-plugin/pom.xml (original)
>> +++ maven/jxr/trunk/maven-jxr-plugin/pom.xml Sun Jul 17 13:49:35 2011
>> @@ -48,7 +48,7 @@ under the License.
>>
>>    <properties>
>>      <mavenVersion>2.0.9</mavenVersion>
>> -<sitePluginVersion>2.2</sitePluginVersion>
>> +<sitePluginVersion>2.3</sitePluginVersion>
>>      <doxia-sitetoolsVersion>1.2</doxia-sitetoolsVersion>
>>      <doxiaVersion>1.2</doxiaVersion>
>>    </properties>
>> @@ -73,10 +73,6 @@ under the License.
>>       <forkMode>always</forkMode>
>>      </configuration>
>>     </plugin>
>> -<plugin>
>> -<artifactId>maven-site-plugin</artifactId>
>> -<version>${sitePluginVersion}</version>
>> -</plugin>
>>    </plugins>
>>   </pluginManagement>
>>
>> @@ -84,6 +80,7 @@ under the License.
>>        <plugin>
>>          <groupId>org.apache.maven.plugins</groupId>
>>          <artifactId>maven-plugin-plugin</artifactId>
>> +       <version>2.8</version>
>>          <executions>
>>            <execution>
>>              <id>generated-helpmojo</id>
>> @@ -185,6 +182,7 @@ under the License.
>>        <plugin>
>>          <groupId>org.apache.maven.plugins</groupId>
>>          <artifactId>maven-plugin-plugin</artifactId>
>> +       <version>2.8</version>
>>        </plugin>
>>      </plugins>
>>    </reporting>
>> @@ -235,7 +233,7 @@ under the License.
>>          </file>
>>        </activation>
>>        <properties>
>> -<sitePluginVersion>3.0-beta-1-SNAPSHOT</sitePluginVersion>
>> +<sitePluginVersion>3.0-beta-4-SNAPSHOT</sitePluginVersion>
>>        </properties>
>>      </profile>
>>
>> @@ -246,13 +244,13 @@ under the License.
>>            <plugin>
>>              <groupId>org.apache.maven.plugins</groupId>
>>              <artifactId>maven-javadoc-plugin</artifactId>
>> -<version>2.5</version>
>> +<version>2.8</version>
>>              <configuration>
>>                <tagletArtifacts>
>>                  <tagletArtifact>
>>                    <groupId>org.apache.maven.plugin-tools</groupId>
>>                    <artifactId>maven-plugin-tools-javadoc</artifactId>
>> -<version>2.5</version>
>> +<version>2.8</version>
>>                  </tagletArtifact>
>>                  <tagletArtifact>
>>                    <groupId>org.codehaus.plexus</groupId>
>>
>> Modified: maven/jxr/trunk/maven-jxr/pom.xml
>> URL:
>> http://svn.apache.org/viewvc/maven/jxr/trunk/maven-jxr/pom.xml?rev=1147613&r1=1147612&r2=1147613&view=diff
>>
>> ==============================================================================
>> --- maven/jxr/trunk/maven-jxr/pom.xml (original)
>> +++ maven/jxr/trunk/maven-jxr/pom.xml Sun Jul 17 13:49:35 2011
>> @@ -101,6 +101,7 @@ under the License.
>>      </site>
>>    </distributionManagement>
>>
>> +
>>    <dependencies>
>>      <dependency>
>>        <groupId>junit</groupId>
>>
>> Modified: maven/jxr/trunk/pom.xml
>> URL:
>> http://svn.apache.org/viewvc/maven/jxr/trunk/pom.xml?rev=1147613&r1=1147612&r2=1147613&view=diff
>>
>> ==============================================================================
>> --- maven/jxr/trunk/pom.xml (original)
>> +++ maven/jxr/trunk/pom.xml Sun Jul 17 13:49:35 2011
>> @@ -60,6 +60,7 @@ under the License.
>>        <dependency>
>>        <groupId>junit</groupId>
>>        <artifactId>junit</artifactId>
>> +       <scope>test</scope>
>>        <version>4.8.2</version>
>>        </dependency>
>>      </dependencies>
>> @@ -69,6 +70,13 @@ under the License.
>>      <pluginManagement>
>>        <plugins>
>>          <plugin>
>> +<artifactId>maven-site-plugin</artifactId>
>> +       <version>2.3</version>
>> +<configuration>
>>
>> +<stagingSiteURL>scp://people.apache.org/www/maven.apache.org/jxr/${project.artifactId}-${project.version}</stagingSiteURL>
>> +</configuration>
>> +</plugin>
>> +<plugin>
>>            <artifactId>maven-release-plugin</artifactId>
>>            <configuration>
>>
>>  <tagBase>https://svn.apache.org/repos/asf/maven/jxr/tags</tagBase>
>>
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


Re: svn commit: r1147613 - in /maven/jxr/trunk: maven-jxr-plugin/pom.xml maven-jxr/pom.xml pom.xml

Posted by Lukas Theussl <lt...@apache.org>.
FYI: Dennis has had similar problems at the last release:

http://maven.40175.n5.nabble.com/VOTE-Release-Maven-JXR-version-2-2-td216534.html

but I'd have guessed that this was fixed since then.

There is still something else wrong with the cobertura report: the main 
index page

http://maven.apache.org/staging/plugins/maven-jxr-plugin/

actually expands the cobertura navigation menu and there is no cobertura 
report generated (even though cobertura runs during site generation). 
Using current maven-parent-21-SNAPSHOT fixes this (maybe due to 
MCOBERTURA-145? you should know! :) )

I am still puzzled about the cycle, it seems like maven doesn't 
distinguish plugins of different versions?


HTH,
-Lukas



On 07/17/2011 06:25 PM, Benson Margulies wrote:
> OK, I got it. Without plugin-plugin 2.8, the plugin-info doesn't appear.
>
> I've restaged.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
> For additional commands, e-mail: dev-help@maven.apache.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


Re: svn commit: r1147613 - in /maven/jxr/trunk: maven-jxr-plugin/pom.xml maven-jxr/pom.xml pom.xml

Posted by Benson Margulies <bi...@gmail.com>.
OK, I got it. Without plugin-plugin 2.8, the plugin-info doesn't appear.

I've restaged.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org


Re: svn commit: r1147613 - in /maven/jxr/trunk: maven-jxr-plugin/pom.xml maven-jxr/pom.xml pom.xml

Posted by Lukas Theussl <lt...@apache.org>.
Benson: I have locally built and staged the site before and after this 
commit and I don't see any of the mentioned issues. Have you actually 
checked your local site? Did you run the site phase or the site:site 
goal? Anyway, with site-plugin-2.3 the locally built and 
stage(-deployed) sites should be completely identical.

-Lukas


bimargulies@apache.org wrote:
> Author: bimargulies
> Date: Sun Jul 17 13:49:35 2011
> New Revision: 1147613
>
> URL: http://svn.apache.org/viewvc?rev=1147613&view=rev
> Log:
> Copy more configuration from the standard plugin parent to see if I can't fix up the site issues that Hervé
> pointed out. This is certainly not all the fixes needed.
>
> Modified:
>      maven/jxr/trunk/maven-jxr-plugin/pom.xml
>      maven/jxr/trunk/maven-jxr/pom.xml
>      maven/jxr/trunk/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=1147613&r1=1147612&r2=1147613&view=diff
> ==============================================================================
> --- maven/jxr/trunk/maven-jxr-plugin/pom.xml (original)
> +++ maven/jxr/trunk/maven-jxr-plugin/pom.xml Sun Jul 17 13:49:35 2011
> @@ -48,7 +48,7 @@ under the License.
>
>     <properties>
>       <mavenVersion>2.0.9</mavenVersion>
> -<sitePluginVersion>2.2</sitePluginVersion>
> +<sitePluginVersion>2.3</sitePluginVersion>
>       <doxia-sitetoolsVersion>1.2</doxia-sitetoolsVersion>
>       <doxiaVersion>1.2</doxiaVersion>
>     </properties>
> @@ -73,10 +73,6 @@ under the License.
>        <forkMode>always</forkMode>
>       </configuration>
>      </plugin>
> -<plugin>
> -<artifactId>maven-site-plugin</artifactId>
> -<version>${sitePluginVersion}</version>
> -</plugin>
>     </plugins>
>    </pluginManagement>
>
> @@ -84,6 +80,7 @@ under the License.
>         <plugin>
>           <groupId>org.apache.maven.plugins</groupId>
>           <artifactId>maven-plugin-plugin</artifactId>
> +	<version>2.8</version>
>           <executions>
>             <execution>
>               <id>generated-helpmojo</id>
> @@ -185,6 +182,7 @@ under the License.
>         <plugin>
>           <groupId>org.apache.maven.plugins</groupId>
>           <artifactId>maven-plugin-plugin</artifactId>
> +	<version>2.8</version>
>         </plugin>
>       </plugins>
>     </reporting>
> @@ -235,7 +233,7 @@ under the License.
>           </file>
>         </activation>
>         <properties>
> -<sitePluginVersion>3.0-beta-1-SNAPSHOT</sitePluginVersion>
> +<sitePluginVersion>3.0-beta-4-SNAPSHOT</sitePluginVersion>
>         </properties>
>       </profile>
>
> @@ -246,13 +244,13 @@ under the License.
>             <plugin>
>               <groupId>org.apache.maven.plugins</groupId>
>               <artifactId>maven-javadoc-plugin</artifactId>
> -<version>2.5</version>
> +<version>2.8</version>
>               <configuration>
>                 <tagletArtifacts>
>                   <tagletArtifact>
>                     <groupId>org.apache.maven.plugin-tools</groupId>
>                     <artifactId>maven-plugin-tools-javadoc</artifactId>
> -<version>2.5</version>
> +<version>2.8</version>
>                   </tagletArtifact>
>                   <tagletArtifact>
>                     <groupId>org.codehaus.plexus</groupId>
>
> Modified: maven/jxr/trunk/maven-jxr/pom.xml
> URL: http://svn.apache.org/viewvc/maven/jxr/trunk/maven-jxr/pom.xml?rev=1147613&r1=1147612&r2=1147613&view=diff
> ==============================================================================
> --- maven/jxr/trunk/maven-jxr/pom.xml (original)
> +++ maven/jxr/trunk/maven-jxr/pom.xml Sun Jul 17 13:49:35 2011
> @@ -101,6 +101,7 @@ under the License.
>       </site>
>     </distributionManagement>
>
> +
>     <dependencies>
>       <dependency>
>         <groupId>junit</groupId>
>
> Modified: maven/jxr/trunk/pom.xml
> URL: http://svn.apache.org/viewvc/maven/jxr/trunk/pom.xml?rev=1147613&r1=1147612&r2=1147613&view=diff
> ==============================================================================
> --- maven/jxr/trunk/pom.xml (original)
> +++ maven/jxr/trunk/pom.xml Sun Jul 17 13:49:35 2011
> @@ -60,6 +60,7 @@ under the License.
>         <dependency>
>   	<groupId>junit</groupId>
>   	<artifactId>junit</artifactId>
> +	<scope>test</scope>
>   	<version>4.8.2</version>
>         </dependency>
>       </dependencies>
> @@ -69,6 +70,13 @@ under the License.
>       <pluginManagement>
>         <plugins>
>           <plugin>
> +<artifactId>maven-site-plugin</artifactId>
> +	<version>2.3</version>
> +<configuration>
> +<stagingSiteURL>scp://people.apache.org/www/maven.apache.org/jxr/${project.artifactId}-${project.version}</stagingSiteURL>
> +</configuration>
> +</plugin>
> +<plugin>
>             <artifactId>maven-release-plugin</artifactId>
>             <configuration>
>               <tagBase>https://svn.apache.org/repos/asf/maven/jxr/tags</tagBase>
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org