You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by po...@apache.org on 2014/11/11 22:18:20 UTC

svn commit: r1638419 - in /creadur/rat/trunk: RELEASE_NOTES.txt pom.xml

Author: pottlinger
Date: Tue Nov 11 21:18:20 2014
New Revision: 1638419

URL: http://svn.apache.org/r1638419
Log:
RAT-188 Fix build on Gump with Java8

* Adding patch from Mark Thomas and ReleaseNotes.

Modified:
    creadur/rat/trunk/RELEASE_NOTES.txt
    creadur/rat/trunk/pom.xml

Modified: creadur/rat/trunk/RELEASE_NOTES.txt
URL: http://svn.apache.org/viewvc/creadur/rat/trunk/RELEASE_NOTES.txt?rev=1638419&r1=1638418&r2=1638419&view=diff
==============================================================================
--- creadur/rat/trunk/RELEASE_NOTES.txt (original)
+++ creadur/rat/trunk/RELEASE_NOTES.txt Tue Nov 11 21:18:20 2014
@@ -12,6 +12,9 @@ Rat 0.12 (SNAPSHOT)
                   (thanks to Chris Burroughs)
     * [RAT-175] - SourceCodeManagementSystems.hasIgnoreFile() should return boolean
     * [RAT-177] - final arrays should be private
+    * [RAT-188] - Fix problems with AnimalSniffer-plugin when running in GUMP with Java 8.
+                  Workaround for https://jira.codehaus.org/browse/MANIMALSNIFFER-45
+                  (thanks to Mark Thomas)
    Improvement
     * [RAT-61]  - List files with unapproved licenses in Maven output
     * [RAT-170] - RAT should use itself during build and site generation

Modified: creadur/rat/trunk/pom.xml
URL: http://svn.apache.org/viewvc/creadur/rat/trunk/pom.xml?rev=1638419&r1=1638418&r2=1638419&view=diff
==============================================================================
--- creadur/rat/trunk/pom.xml (original)
+++ creadur/rat/trunk/pom.xml Tue Nov 11 21:18:20 2014
@@ -402,6 +402,14 @@ agnostic home for software distribution 
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>animal-sniffer-maven-plugin</artifactId>
         <version>1.11</version>
+        <dependencies>
+          <!-- Upgrade ASM and support Java 8 bytecode -->
+          <dependency>
+            <groupId>org.ow2.asm</groupId>
+            <artifactId>asm-all</artifactId>
+            <version>5.0.3</version>
+          </dependency>
+        </dependencies>
         <executions>
           <execution>
             <!-- This checks the source code of our project -->