You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by de...@apache.org on 2011/03/20 00:09:53 UTC

svn commit: r1083327 - in /incubator/rat/main/trunk: RELEASE_NOTES.txt apache-rat-plugin/pom.xml apache-rat-plugin/src/site/site.xml pom.xml src/site/site.xml

Author: dennisl
Date: Sat Mar 19 23:09:53 2011
New Revision: 1083327

URL: http://svn.apache.org/viewvc?rev=1083327&view=rev
Log:
Remove old outdated changes report in RAT Maven Plugin and copy the RELEASE_NOTES.txt to the main site and link to that instead.
If you don't want to keep the file apache-rat-plugin/src/changes/changes.xml for historical reasons, it can now safely be removed.

Modified:
    incubator/rat/main/trunk/RELEASE_NOTES.txt
    incubator/rat/main/trunk/apache-rat-plugin/pom.xml
    incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml
    incubator/rat/main/trunk/pom.xml
    incubator/rat/main/trunk/src/site/site.xml

Modified: incubator/rat/main/trunk/RELEASE_NOTES.txt
URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/RELEASE_NOTES.txt?rev=1083327&r1=1083326&r2=1083327&view=diff
==============================================================================
--- incubator/rat/main/trunk/RELEASE_NOTES.txt (original)
+++ incubator/rat/main/trunk/RELEASE_NOTES.txt Sat Mar 19 23:09:53 2011
@@ -1,5 +1,6 @@
 RAT 0.8
 =======
+ * Some website fixes
  * Issues Resolved (see http://issues.apache.org/jira):
   * Bug:
     * RAT-86 CLI doesn't allow adding of licenses unless a custom
@@ -15,7 +16,7 @@ RAT 0.8
 
 RAT 0.7
 =======
- * some website fixes
+ * Some website fixes
  * Issues Resolved (see http://issues.apache.org/jira):
   * Bug:
     * RAT-62 Some of RATs own files missing License Headers

Modified: incubator/rat/main/trunk/apache-rat-plugin/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-plugin/pom.xml?rev=1083327&r1=1083326&r2=1083327&view=diff
==============================================================================
--- incubator/rat/main/trunk/apache-rat-plugin/pom.xml (original)
+++ incubator/rat/main/trunk/apache-rat-plugin/pom.xml Sat Mar 19 23:09:53 2011
@@ -117,18 +117,6 @@
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-plugin-plugin</artifactId>
       </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-changes-plugin</artifactId>
-        <version>2.0-beta-2</version>
-        <reportSets>
-          <reportSet>
-            <reports>
-              <report>changes-report</report>
-            </reports>
-          </reportSet>
-        </reportSets>
-      </plugin>
     </plugins>
   </reporting>
 

Modified: incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml?rev=1083327&r1=1083326&r2=1083327&view=diff
==============================================================================
--- incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml (original)
+++ incubator/rat/main/trunk/apache-rat-plugin/src/site/site.xml Sat Mar 19 23:09:53 2011
@@ -24,7 +24,6 @@
       <item name="Goals" href="plugin-info.html"/>
       <item name="Usage" href="usage.html"/>
       <item name="FAQ" href="faq.html"/>
-      <item name="Changes" href="changes-report.html"/>
     </menu>
     <menu name="Examples">
       <item name="Basic use" href="examples/basic.html"/>

Modified: incubator/rat/main/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/pom.xml?rev=1083327&r1=1083326&r2=1083327&view=diff
==============================================================================
--- incubator/rat/main/trunk/pom.xml (original)
+++ incubator/rat/main/trunk/pom.xml Sat Mar 19 23:09:53 2011
@@ -218,6 +218,26 @@ Note that binary compatibility is not ga
         </plugin>
       </plugins>
     </pluginManagement>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>pre-site</phase>
+            <id>copy-site-resources</id>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <configuration>
+              <tasks>
+                <copy file="RELEASE_NOTES.txt" todir="${project.build.directory}/site/" failonerror="false" />
+              </tasks>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
   </build>
 
   <issueManagement>

Modified: incubator/rat/main/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/rat/main/trunk/src/site/site.xml?rev=1083327&r1=1083326&r2=1083327&view=diff
==============================================================================
--- incubator/rat/main/trunk/src/site/site.xml (original)
+++ incubator/rat/main/trunk/src/site/site.xml Sat Mar 19 23:09:53 2011
@@ -19,6 +19,7 @@
     <menu name="RAT">
       <item name="Home" href="/index.html"/>
       <item name="Downloads" href="/downloads.html"/>
+      <item name="Changes" href="/RELEASE_NOTES.txt"/>
     </menu>
 
     <menu ref="modules"/>