You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2014/03/16 22:11:19 UTC

git commit: [flex-flexunit] [refs/heads/develop] - run rat when packaging and package after running tests even for source

Repository: flex-flexunit
Updated Branches:
  refs/heads/develop cb0ec65c3 -> 925db685e


run rat when packaging and package after running tests even for source


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

Branch: refs/heads/develop
Commit: 925db685ed41def5dae838dbbbb75333da9850e8
Parents: cb0ec65
Author: Justin Mclean <jm...@apache.org>
Authored: Mon Mar 17 08:11:05 2014 +1100
Committer: Justin Mclean <jm...@apache.org>
Committed: Mon Mar 17 08:11:05 2014 +1100

----------------------------------------------------------------------
 build.xml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-flexunit/blob/925db685/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index ed10be8..e7a3028 100644
--- a/build.xml
+++ b/build.xml
@@ -182,12 +182,14 @@ to contribute to our CI process.
       </ant>
    </target>
 
-	<target name="package" depends="package-src-zip,package-bin-zip,package-src-gzip,package-bin-gzip">
+	<target name="package" depends="rat-report,allpackages">
 		<mkdir dir="${basedir}/out"/>
 	</target>
 	
+	<target name="allpackages" depends="package-src-zip,package-bin-zip,package-src-gzip,package-bin-gzip" />
+	
    <!-- Prepares and assembles the final source zip with all of the FlexUnit4 components and docs -->
-   <target name="package-src-zip">
+   <target name="package-src-zip" depends="test,listeners">
       <zip destfile="${basedir}/out/${finalName}-src.zip">
       	 <!-- Important Files -->
       	 <zipfileset dir="${basedir}" includes="LICENSE,README,RELEASE_NOTES,build.xml,jenkins.xml,utils.xml,version.properties" />