You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cz...@apache.org on 2013/05/22 15:50:31 UTC

[11/41] git commit: added more directories and files to exclude in ant task rat-report

added more directories and files to exclude in ant task rat-report


Project: http://git-wip-us.apache.org/repos/asf/flex-flexunit/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-flexunit/commit/23fe1a14
Tree: http://git-wip-us.apache.org/repos/asf/flex-flexunit/tree/23fe1a14
Diff: http://git-wip-us.apache.org/repos/asf/flex-flexunit/diff/23fe1a14

Branch: refs/heads/makeFlexUnitApacheReady
Commit: 23fe1a14deb8d19cd788760423e5af43211b3346
Parents: 0f812e3
Author: cyrill.zadra <cy...@gmail.com>
Authored: Sat May 18 12:30:42 2013 +0800
Committer: cyrill.zadra <cy...@gmail.com>
Committed: Sat May 18 12:30:42 2013 +0800

----------------------------------------------------------------------
 build.xml |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/23fe1a14/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 925caea..2ebe59c 100644
--- a/build.xml
+++ b/build.xml
@@ -309,11 +309,16 @@ to contribute to our CI process.
         <rat:report xmlns:rat="antlib:org.apache.rat.anttasks"
             reportFile="${basedir}/rat.report">
             <fileset dir="${rat.dir}">
+				<!-- rat.report file -->
+				<exclude name="rat.report"/>
+				<!-- git files -->
+                <exclude name="**/.git/"/>
+				<exclude name="**/.gitignore"/>
                 <!-- generated source files that don't have Apache v2 license header -->
                 <exclude name="**/build.number"/>
                 <exclude name="**/.actionScriptProperties"/>
                 <exclude name="**/.flexProperties"/>
-				        <exclude name="**/.flexLibProperties"/>
+				<exclude name="**/.flexLibProperties"/>
                 <exclude name="**/.project"/>
                 <exclude name="**/.fxpProperties"/>
                 <exclude name="**/.settings/**"/>
@@ -327,6 +332,10 @@ to contribute to our CI process.
                 <!-- exclude fonts -->
                 <exclude name="**/*.ttf"/>
                 <!--          End of binary files           -->
+				<!--Exclude generated doc -->
+				<exclude name="FlexUnit4/docs/"/>
+				<exclude name="FlexUnit4UIListener/target/docs/"/>
+				
             </fileset>
         </rat:report>