You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2013/06/23 13:46:31 UTC

svn commit: r1495810 - in /commons/proper/commons-javadocfix-plugin/trunk: ./ src/main/java/org/apache/commons/plugins/javadocfix/ src/main/resources/

Author: sebb
Date: Sun Jun 23 11:46:31 2013
New Revision: 1495810

URL: http://svn.apache.org/r1495810
Log:
Dropping Oracle code as it is too buggy and license suitability is in doubt

Removed:
    commons/proper/commons-javadocfix-plugin/trunk/LICENSE-JavadocFixTool
    commons/proper/commons-javadocfix-plugin/trunk/src/main/java/org/apache/commons/plugins/javadocfix/JavadocFixTool.java
    commons/proper/commons-javadocfix-plugin/trunk/src/main/resources/
Modified:
    commons/proper/commons-javadocfix-plugin/trunk/NOTICE.txt
    commons/proper/commons-javadocfix-plugin/trunk/pom.xml
    commons/proper/commons-javadocfix-plugin/trunk/src/main/java/org/apache/commons/plugins/javadocfix/AbstractJavadocFixToolMojo.java

Modified: commons/proper/commons-javadocfix-plugin/trunk/NOTICE.txt
URL: http://svn.apache.org/viewvc/commons/proper/commons-javadocfix-plugin/trunk/NOTICE.txt?rev=1495810&r1=1495809&r2=1495810&view=diff
==============================================================================
--- commons/proper/commons-javadocfix-plugin/trunk/NOTICE.txt (original)
+++ commons/proper/commons-javadocfix-plugin/trunk/NOTICE.txt Sun Jun 23 11:46:31 2013
@@ -2,7 +2,4 @@ Apache Commons JavadocFix Plugin
 Copyright 2013 The Apache Software Foundation
 
 This product includes software developed at
-The Apache Software Foundation (http://www.apache.org/).
-
-This product contains software (JavadocFixTool) originally developed by Oracle America, Inc.
-The license is found in the file LICENSE-JavadocFixTool
\ No newline at end of file
+The Apache Software Foundation (http://www.apache.org/).
\ No newline at end of file

Modified: commons/proper/commons-javadocfix-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/commons-javadocfix-plugin/trunk/pom.xml?rev=1495810&r1=1495809&r2=1495810&view=diff
==============================================================================
--- commons/proper/commons-javadocfix-plugin/trunk/pom.xml (original)
+++ commons/proper/commons-javadocfix-plugin/trunk/pom.xml Sun Jun 23 11:46:31 2013
@@ -98,12 +98,6 @@ This is intended as a temporary measure 
 
     <pluginManagement>
       <plugins>
-        <!-- Allow use of short plugin name -->
-        <plugin>
-          <groupId>${project.groupId}</groupId>
-          <artifactId>${project.artifactId}</artifactId>
-          <version>${project.version}</version>
-        </plugin>
 <!-- 
         <plugin>
           <artifactId>maven-assembly-plugin</artifactId>
@@ -126,12 +120,8 @@ This is intended as a temporary measure 
     </pluginManagement>
 
     <plugins>
-      <!-- Allow use of short plugin name -->
-      <plugin>
-        <groupId>${project.groupId}</groupId>
-        <artifactId>${project.artifactId}</artifactId>
-      </plugin>
       <!-- Allow the jar to be run stand-alone -->
+      <!-- 
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-jar-plugin</artifactId>
@@ -143,6 +133,7 @@ This is intended as a temporary measure 
           </archive>
         </configuration>      
       </plugin>
+       -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-plugin-plugin</artifactId>

Modified: commons/proper/commons-javadocfix-plugin/trunk/src/main/java/org/apache/commons/plugins/javadocfix/AbstractJavadocFixToolMojo.java
URL: http://svn.apache.org/viewvc/commons/proper/commons-javadocfix-plugin/trunk/src/main/java/org/apache/commons/plugins/javadocfix/AbstractJavadocFixToolMojo.java?rev=1495810&r1=1495809&r2=1495810&view=diff
==============================================================================
--- commons/proper/commons-javadocfix-plugin/trunk/src/main/java/org/apache/commons/plugins/javadocfix/AbstractJavadocFixToolMojo.java (original)
+++ commons/proper/commons-javadocfix-plugin/trunk/src/main/java/org/apache/commons/plugins/javadocfix/AbstractJavadocFixToolMojo.java Sun Jun 23 11:46:31 2013
@@ -82,11 +82,11 @@ public abstract class AbstractJavadocFix
             File d = new File(project.getBasedir(), dir);
             if (d.isDirectory()) {
                 if (fix) {
-                    log.info("Fixing " + d);
-                    JavadocFixTool.main(new String[]{"-R", d.toString()});
+//                    log.info("Fixing " + d);
+//                    JavadocFixTool.main(new String[]{"-R", d.toString()});
                 } else {
-                    log.info("Scanning " + d);                        
-                    JavadocFixTool.main(new String[]{"-R", "-C", d.toString()});
+//                    log.info("Scanning " + d);                        
+//                    JavadocFixTool.main(new String[]{"-R", "-C", d.toString()});
                 }
             } else {
                 if (d.exists()) {