You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hcatalog-commits@incubator.apache.org by tr...@apache.org on 2013/01/25 19:07:17 UTC

svn commit: r1438650 - in /incubator/hcatalog/branches/branch-0.5: CHANGES.txt build-support/ant/checkstyle.xml build-support/conf/ build-support/conf/rat-excludes.txt build.xml

Author: travis
Date: Fri Jan 25 19:07:17 2013
New Revision: 1438650

URL: http://svn.apache.org/viewvc?rev=1438650&view=rev
Log:
HCATALOG-608 exclude data files from hcatalog release audit report

Added:
    incubator/hcatalog/branches/branch-0.5/build-support/conf/
    incubator/hcatalog/branches/branch-0.5/build-support/conf/rat-excludes.txt
Modified:
    incubator/hcatalog/branches/branch-0.5/CHANGES.txt
    incubator/hcatalog/branches/branch-0.5/build-support/ant/checkstyle.xml
    incubator/hcatalog/branches/branch-0.5/build.xml

Modified: incubator/hcatalog/branches/branch-0.5/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.5/CHANGES.txt?rev=1438650&r1=1438649&r2=1438650&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.5/CHANGES.txt (original)
+++ incubator/hcatalog/branches/branch-0.5/CHANGES.txt Fri Jan 25 19:07:17 2013
@@ -164,6 +164,8 @@ Release 0.5.0 - Unreleased
   OPTIMIZATIONS
 
   BUG FIXES
+  HCAT-608 exclude data files from hcatalog release audit report (traviscrawford)
+
   HCAT-606 remove hcatalog test includes/excludes files (traviscrawford)
 
   HCAT-599 NotificationListener doesn't use getTopic() for sending messages. (mithun via traviscrawford)

Modified: incubator/hcatalog/branches/branch-0.5/build-support/ant/checkstyle.xml
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.5/build-support/ant/checkstyle.xml?rev=1438650&r1=1438649&r2=1438650&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.5/build-support/ant/checkstyle.xml (original)
+++ incubator/hcatalog/branches/branch-0.5/build-support/ant/checkstyle.xml Fri Jan 25 19:07:17 2013
@@ -34,6 +34,7 @@
           <exclude name="**/build/**"/>
           <exclude name=".idea/**"/>
           <exclude name="build-support/checkstyle/apache_header.txt"/>
+          <exclude name="build-support/conf/rat-excludes.txt"/>
           <exclude name="license/*-LICENSE.txt"/>
           <exclude name="src/docs/src/documentation/**"/>
           <exclude name="src/packages/**"/> <!-- TODO: delete packages configs -->

Added: incubator/hcatalog/branches/branch-0.5/build-support/conf/rat-excludes.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.5/build-support/conf/rat-excludes.txt?rev=1438650&view=auto
==============================================================================
--- incubator/hcatalog/branches/branch-0.5/build-support/conf/rat-excludes.txt (added)
+++ incubator/hcatalog/branches/branch-0.5/build-support/conf/rat-excludes.txt Fri Jan 25 19:07:17 2013
@@ -0,0 +1,7 @@
+build
+boolean.rcfile
+complex.rcfile
+numbers.rcfile
+numbers.txt
+nums.txt
+rat-excludes.txt
\ No newline at end of file

Modified: incubator/hcatalog/branches/branch-0.5/build.xml
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.5/build.xml?rev=1438650&r1=1438649&r2=1438650&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.5/build.xml (original)
+++ incubator/hcatalog/branches/branch-0.5/build.xml Fri Jan 25 19:07:17 2013
@@ -407,8 +407,8 @@
               output="${basedir}/build/releaseaudit_report.txt">
             <arg value="--dir"/>
             <arg value="${basedir}"/>
-            <arg value="-e"/>
-            <arg value=".*/build/.*"/>
+            <arg value="--exclude-file"/>
+            <arg value="build-support/conf/rat-excludes.txt"/>
         </java>
         <echo message="releaseaudit report generated at ${basedir}/build/releaseaudit_report.txt"/>
     </target>