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

2011-07-18 Thread Lukas Theussl


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-unsubscr...@maven.apache.org
For additional commands, e-mail: dev-h...@maven.apache.org



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



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

2011-07-17 Thread Lukas Theussl


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


bimargul...@apache.org wrote:

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

URL: http://svn.apache.org/viewvc?rev=1147613view=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=1147613r1=1147612r2=1147613view=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
  mavenVersion2.0.9/mavenVersion
-sitePluginVersion2.2/sitePluginVersion
+sitePluginVersion2.3/sitePluginVersion
  doxia-sitetoolsVersion1.2/doxia-sitetoolsVersion
  doxiaVersion1.2/doxiaVersion
/properties
@@ -73,10 +73,6 @@ under the License.
   forkModealways/forkMode
  /configuration
 /plugin
-plugin
-artifactIdmaven-site-plugin/artifactId
-version${sitePluginVersion}/version
-/plugin
/plugins
   /pluginManagement

@@ -84,6 +80,7 @@ under the License.
plugin
  groupIdorg.apache.maven.plugins/groupId
  artifactIdmaven-plugin-plugin/artifactId
+   version2.8/version
  executions
execution
  idgenerated-helpmojo/id
@@ -185,6 +182,7 @@ under the License.
plugin
  groupIdorg.apache.maven.plugins/groupId
  artifactIdmaven-plugin-plugin/artifactId
+   version2.8/version
/plugin
  /plugins
/reporting
@@ -235,7 +233,7 @@ under the License.
  /file
/activation
properties
-sitePluginVersion3.0-beta-1-SNAPSHOT/sitePluginVersion
+sitePluginVersion3.0-beta-4-SNAPSHOT/sitePluginVersion
/properties
  /profile

@@ -246,13 +244,13 @@ under the License.
plugin
  groupIdorg.apache.maven.plugins/groupId
  artifactIdmaven-javadoc-plugin/artifactId
-version2.5/version
+version2.8/version
  configuration
tagletArtifacts
  tagletArtifact
groupIdorg.apache.maven.plugin-tools/groupId
artifactIdmaven-plugin-tools-javadoc/artifactId
-version2.5/version
+version2.8/version
  /tagletArtifact
  tagletArtifact
groupIdorg.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=1147613r1=1147612r2=1147613view=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
groupIdjunit/groupId

Modified: maven/jxr/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/jxr/trunk/pom.xml?rev=1147613r1=1147612r2=1147613view=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
groupIdjunit/groupId
artifactIdjunit/artifactId
+   scopetest/scope
version4.8.2/version
/dependency
  /dependencies
@@ -69,6 +70,13 @@ under the License.
  pluginManagement
plugins
  plugin
+artifactIdmaven-site-plugin/artifactId
+   version2.3/version
+configuration
+stagingSiteURLscp://people.apache.org/www/maven.apache.org/jxr/${project.artifactId}-${project.version}/stagingSiteURL
+/configuration
+/plugin
+plugin
artifactIdmaven-release-plugin/artifactId
configuration
  tagBasehttps://svn.apache.org/repos/asf/maven/jxr/tags/tagBase




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



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

2011-07-17 Thread Benson Margulies
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 ltheu...@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


 bimargul...@apache.org wrote:

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

 URL: http://svn.apache.org/viewvc?rev=1147613view=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=1147613r1=1147612r2=1147613view=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
      mavenVersion2.0.9/mavenVersion
 -sitePluginVersion2.2/sitePluginVersion
 +sitePluginVersion2.3/sitePluginVersion
      doxia-sitetoolsVersion1.2/doxia-sitetoolsVersion
      doxiaVersion1.2/doxiaVersion
    /properties
 @@ -73,10 +73,6 @@ under the License.
       forkModealways/forkMode
      /configuration
     /plugin
 -plugin
 -artifactIdmaven-site-plugin/artifactId
 -version${sitePluginVersion}/version
 -/plugin
    /plugins
   /pluginManagement

 @@ -84,6 +80,7 @@ under the License.
        plugin
          groupIdorg.apache.maven.plugins/groupId
          artifactIdmaven-plugin-plugin/artifactId
 +       version2.8/version
          executions
            execution
              idgenerated-helpmojo/id
 @@ -185,6 +182,7 @@ under the License.
        plugin
          groupIdorg.apache.maven.plugins/groupId
          artifactIdmaven-plugin-plugin/artifactId
 +       version2.8/version
        /plugin
      /plugins
    /reporting
 @@ -235,7 +233,7 @@ under the License.
          /file
        /activation
        properties
 -sitePluginVersion3.0-beta-1-SNAPSHOT/sitePluginVersion
 +sitePluginVersion3.0-beta-4-SNAPSHOT/sitePluginVersion
        /properties
      /profile

 @@ -246,13 +244,13 @@ under the License.
            plugin
              groupIdorg.apache.maven.plugins/groupId
              artifactIdmaven-javadoc-plugin/artifactId
 -version2.5/version
 +version2.8/version
              configuration
                tagletArtifacts
                  tagletArtifact
                    groupIdorg.apache.maven.plugin-tools/groupId
                    artifactIdmaven-plugin-tools-javadoc/artifactId
 -version2.5/version
 +version2.8/version
                  /tagletArtifact
                  tagletArtifact
                    groupIdorg.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=1147613r1=1147612r2=1147613view=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
        groupIdjunit/groupId

 Modified: maven/jxr/trunk/pom.xml
 URL:
 http://svn.apache.org/viewvc/maven/jxr/trunk/pom.xml?rev=1147613r1=1147612r2=1147613view=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
        groupIdjunit/groupId
        artifactIdjunit/artifactId
 +       scopetest/scope
        version4.8.2/version
        /dependency
      /dependencies
 @@ -69,6 +70,13 @@ under the License.
      pluginManagement
        plugins
          plugin
 +artifactIdmaven-site-plugin/artifactId
 +       version2.3/version
 +configuration

 +stagingSiteURLscp://people.apache.org/www/maven.apache.org/jxr/${project.artifactId}-${project.version}/stagingSiteURL
 +/configuration
 +/plugin
 +plugin
            artifactIdmaven-release-plugin/artifactId
            configuration

  tagBasehttps://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

2011-07-17 Thread Benson Margulies
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 ltheu...@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


 bimargul...@apache.org wrote:

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

 URL: http://svn.apache.org/viewvc?rev=1147613view=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=1147613r1=1147612r2=1147613view=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
      mavenVersion2.0.9/mavenVersion
 -sitePluginVersion2.2/sitePluginVersion
 +sitePluginVersion2.3/sitePluginVersion
      doxia-sitetoolsVersion1.2/doxia-sitetoolsVersion
      doxiaVersion1.2/doxiaVersion
    /properties
 @@ -73,10 +73,6 @@ under the License.
       forkModealways/forkMode
      /configuration
     /plugin
 -plugin
 -artifactIdmaven-site-plugin/artifactId
 -version${sitePluginVersion}/version
 -/plugin
    /plugins
   /pluginManagement

 @@ -84,6 +80,7 @@ under the License.
        plugin
          groupIdorg.apache.maven.plugins/groupId
          artifactIdmaven-plugin-plugin/artifactId
 +       version2.8/version
          executions
            execution
              idgenerated-helpmojo/id
 @@ -185,6 +182,7 @@ under the License.
        plugin
          groupIdorg.apache.maven.plugins/groupId
          artifactIdmaven-plugin-plugin/artifactId
 +       version2.8/version
        /plugin
      /plugins
    /reporting
 @@ -235,7 +233,7 @@ under the License.
          /file
        /activation
        properties
 -sitePluginVersion3.0-beta-1-SNAPSHOT/sitePluginVersion
 +sitePluginVersion3.0-beta-4-SNAPSHOT/sitePluginVersion
        /properties
      /profile

 @@ -246,13 +244,13 @@ under the License.
            plugin
              groupIdorg.apache.maven.plugins/groupId
              artifactIdmaven-javadoc-plugin/artifactId
 -version2.5/version
 +version2.8/version
              configuration
                tagletArtifacts
                  tagletArtifact
                    groupIdorg.apache.maven.plugin-tools/groupId
                    artifactIdmaven-plugin-tools-javadoc/artifactId
 -version2.5/version
 +version2.8/version
                  /tagletArtifact
                  tagletArtifact
                    groupIdorg.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=1147613r1=1147612r2=1147613view=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
        groupIdjunit/groupId

 Modified: maven/jxr/trunk/pom.xml
 URL:
 http://svn.apache.org/viewvc/maven/jxr/trunk/pom.xml?rev=1147613r1=1147612r2=1147613view=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
        groupIdjunit/groupId
        artifactIdjunit/artifactId
 +       scopetest/scope
        version4.8.2/version
        /dependency
      /dependencies
 @@ -69,6 +70,13 @@ under the License.
      pluginManagement
        plugins
          plugin
 +artifactIdmaven-site-plugin/artifactId
 +       version2.3/version
 +configuration

 +stagingSiteURLscp://people.apache.org/www/maven.apache.org/jxr/${project.artifactId}-${project.version}/stagingSiteURL
 +/configuration
 +/plugin
 +plugin
            artifactIdmaven-release-plugin/artifactId
            configuration

  tagBasehttps://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

2011-07-17 Thread Benson Margulies
OK, I got it. Without plugin-plugin 2.8, the plugin-info doesn't appear.

I've restaged.

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