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/20 01:05:41 UTC

svn commit: r4754 - in /dev/flex/flexunit/4.2.0/rc2: ./ binaries/

Author: jmclean
Date: Thu Mar 20 00:05:36 2014
New Revision: 4754

Log:
Apache Flex FlexUnit 4.2.0 RC2

Added:
    dev/flex/flexunit/4.2.0/rc2/
    dev/flex/flexunit/4.2.0/rc2/README
    dev/flex/flexunit/4.2.0/rc2/RELEASE_NOTES
    dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz   (with props)
    dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.asc
    dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.md5
    dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.zip   (with props)
    dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.zip.asc
    dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.zip.md5
    dev/flex/flexunit/4.2.0/rc2/binaries/
    dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz   (with props)
    dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.asc
    dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.md5
    dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip   (with props)
    dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.asc
    dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.md5

Added: dev/flex/flexunit/4.2.0/rc2/README
==============================================================================
--- dev/flex/flexunit/4.2.0/rc2/README (added)
+++ dev/flex/flexunit/4.2.0/rc2/README Thu Mar 20 00:05:36 2014
@@ -0,0 +1,133 @@
+Apache Flex FlexUnit
+==================
+
+Apache Flex FlexUnit is a unit testing framework for Apache Flex and ActionScript 3.0 
+applications and libraries. It mimics the functionality of JUnit, a Java 
+unit testing framework, and comes with a graphical test runner.
+
+Getting the latest sources via git
+==================================
+
+    You can always checkout the latest source via git using the following
+    command:
+	
+	 git clone https://git-wip-us.apache.org/repos/asf/flex-flexunit.git flexunit
+	 cd flexunit
+	 git checkout develop
+
+    For further information visit http://flex.apache.org/download-source.html
+
+Building Apache Flex FlexUnit
+=========================
+
+    Apache Flex FlexUnit requires some build tools which must be installed
+    prior to building FlexUnit and it depends on some external software which
+    are downloaded as part of the build process.  Some of these have different licenses.
+    See the Software Dependencies section for more information on the external software
+    dependencies.
+	
+Install Prerequisites
+---------------------
+
+    Before building FlexUnit you must install the following software and set the
+    corresponding environment variables using absolute file paths.  Relative file paths
+    will result in build errors.
+    
+	==================================================================================
+    SOFTWARE                                    ENVIRONMENT VARIABLE (absolute paths)
+    ==================================================================================
+    
+    Java SDK 1.6 or greater (*1)                JAVA_HOME
+        (for Java 1.7 see note at (*2))
+        
+    Ant 1.7.1 or greater (*1)                   ANT_HOME
+        (for Java 1.7 see note at (*2))
+    
+    Apache Flex (*3)                            FLEX_HOME 
+    
+    ==================================================================================
+	
+	*1) The bin directories for ANT_HOME and JAVA_HOME should be added to your PATH.
+        
+        On Windows, set PATH to
+            
+            PATH=%PATH%;%ANT_HOME%\bin;%JAVA_HOME%\bin
+            
+        On the Mac (bash), set PATH to
+            
+            export PATH="$PATH:$ANT_HOME/bin:$JAVA_HOME/bin"
+            
+         On Linux make sure you path include ANT_HOME and JAVA_HOME.
+
+    *2)  If you are using Java SDK 1.7 or greater on a Mac you must use Ant 1.8 or 
+         greater. If you use Java 1.7 with Ant 1.7, ant reports the java version as 1.6 
+         so the JVM args for the data model (-d32/-d64) will not be set correctly and
+         you will get compile errors.
+        
+    *3) FLEX_HOME should be set to a valid Apache Flex installation.
+	
+	
+Software Dependencies
+---------------------
+
+    Apache Flex FlexUnit uses third-party code that will be downloaded as part of the Apache
+    Flex FlexUnit build.  
+
+    When you have all the prerequisites in place and the environment variables set, 
+    (see Install Prerequisites above), use
+
+        cd <flexunit.dir>
+        ant thirdparty-downloads
+			
+    The Apache Version 2.0 license is in the LICENSE file.
+    
+    The following dependencies have licenses which are, or are compatible with, the Apache 
+    Version 2.0 license.  You will not be prompted to acknowledge the download.  
+	
+		(jars)
+		ant -  http://search.maven.org/remotecontent?filepath=org/apache/ant/ant/1.7.1/ant-1.7.1.jar (Apache 2.0 License)
+		ant-contrib - http://search.maven.org/remotecontent?filepath=ant-contrib/ant-contrib/1.0b3/ant-contrib-1.0b3.jar (Apache 2.0 License)
+		ant-launcher -  http://search.maven.org/remotecontent?filepath=org/apache/ant/ant-launcher/1.7.1/ant-launcher-1.7.1.jar (Apache 2.0 License)
+		ant-testutil -  http://search.maven.org/remotecontent?filepath=org/apache/ant/ant-testutil/1.7.1/ant-testutil-1.7.1.jar	(Apache 2.0 License)
+		maven-ant-tasks  - http://search.maven.org/remotecontent?filepath=org/apache/maven/maven-ant-tasks/2.1.3/maven-ant-tasks-2.1.3.jar (Apache 2.0 License)
+		dom4j - http://search.maven.org/remotecontent?filepath=dom4j/dom4j/1.6.1/dom4j-1.6.1.jar (BSD License)
+		jaxen - http://search.maven.org/remotecontent?filepath=jaxen/jaxen/1.1-beta-6/jaxen-1.1-beta-6.jar (BSD License)
+		
+		(swcs)
+		coverageagent - https://flexcover.googlecode.com/files/flexcover-0.90.zip (MIT License)
+		fluint - https://github.com/flexunit/flexunit/raw/master/FlexUnit4Test/libs/fluint-1_2.swc (MIT License)
+		mockolate - http://cloud.github.com/downloads/drewbourne/hamcrest-as3/hamcrest-as3-flex-1.1.3.zip (MIT License)	
+		mock-as - https://github.com/flexunit/flexunit/raw/master/FlexUnit4Test/libs/mock-as3.swc (BSD License)	
+		hamcrest - http://cloud.github.com/downloads/drewbourne/hamcrest-as3/mockolate-0.9.5.zip (BSD License)
+		flexunit1lib - https://github.com/flexunit/flexunit/raw/master/FlexUnit4Test/libs/FlexUnit1Lib.swc (BSD License)
+		
+	The following dependencies have licenses which Apache considers to be reciprocal
+    licenses so you will be prompted to acknowledge the license before the software is
+    downloaded to your system.
+	
+		(jars)
+		junit - http://search.maven.org/remotecontent?filepath=junit/junit/3.8.1/junit-3.8.1.jar (License - CPL 1.0)
+		saxon9he - http://search.maven.org/remotecontent?filepath=net/sf/saxon/Saxon-HE/9.4/Saxon-HE-9.4.jar (License - MPL 1.1)
+
+
+Building Apache Flex FlexUnit
+-----------------------------------------------
+
+    When you have all the prerequisites in place and the environment variables set, 
+    (see Install Prerequisites above), to build Apache Flex FlexUnit use:
+
+        cd <flexunit.dir>
+        ant
+	
+	To clean the build use:
+    
+        ant clean 
+        
+ 	To package the build use:
+    
+        ant package        
+		
+Thanks for using Apache Flex FlexUnit.  Enjoy!
+
+The Apache Flex Project
+<http://flex.apache.org>

Added: dev/flex/flexunit/4.2.0/rc2/RELEASE_NOTES
==============================================================================
--- dev/flex/flexunit/4.2.0/rc2/RELEASE_NOTES (added)
+++ dev/flex/flexunit/4.2.0/rc2/RELEASE_NOTES Thu Mar 20 00:05:36 2014
@@ -0,0 +1,31 @@
+Apache Flex FlexUnit 4.2
+=================
+
+Apache Flex FlexUnit 4.2 is an update to FlexUnit 4.1 and first release under Apache. 
+
+Differences from FlexUnit 4.1 include:
+
+Changes
+-------------
+- Automated sonatype OSS deployment of the Apache Flex (FlexUnit) artifacts
+- Implemented the url property in FlexUnit Ant task to allow use of remote swfs
+
+Bug Fixes
+----------
+ Below is a complete list of all the bug fixes that have been included since
+ the last release, FlexUnit 4.1
+ If you would like specific information about any of the items below, go to
+ https://issues.apache.org and search for the JIRA Issue Number by using the
+ Quick Search.  Details of the bug and its fix will be included on the
+ resulting page.
+
+JIRA Issue Number  Summary                                                                                        
+-------------------------------------------------------------------------------------------------------------------
+FLEX-33572 further implemented the automated sonatype OSS deployment of the FlexUnit artifacts
+
+Please report new issues to our bugbase at:
+
+    https://issues.apache.org/jira/browse/FLEX
+
+The Apache Flex Project
+<http://flex.apache.org/>

Added: dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.asc
==============================================================================
--- dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.asc (added)
+++ dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.asc Thu Mar 20 00:05:36 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJTKi9+AAoJEODyhZOu6tFRgCoP/1Sx4jn8KUCUwoIpqn/EAYuo
+2vc4UNq7mSkVhk1dk36GECkHmwj8LJNuKoI3LbWAkp54/lS7UbHHAat/b0uVrOXA
+lKljA28ScP2HmHr0T2Y4LF5bES+C+/JCxqbk4dM0mDuJf92s+IIQKwMkZRoeesKA
+ks1Ci74xAjaDvPzNe/6INW3vCn/Dwnz/FKD91HLP9+hiktsexF5d/kiIxgO74mS6
+xMfUund5+LzzTA/u6I2sq/aTU2n2cHfE63WQ2M1/Zt+v99p9Yf4OIT3hwq66s8hB
+WzL+Pw2IscrwP4u+9muhdVH8e3C62n5JTTtVc3/YAE9PhFc6GszUZwTgKTHNoSbD
++wa/KoS484ISNQX17lKCXqYEzQwbVpvMCrnWx8idWEiEAQU7wCd/PFTcDlL5Hs1Z
+DF6760dr58P/Oj8vn0wkC+KwRa92j23R+jmvWXLG5uSCLHwCnc+EOYbjHYusFtX4
+6kffGfF8vx1dV0c3DsKZDOefEEppuHx0wP1ijbdgvyR2i1P96wyWlM/OSP6IAuOB
++J2vA4BQej/jNmiWCdunKM5MTITLdqztO/5P+imptrd1xVPOrByCJmtZa8kEg8vJ
+4HpETdZik7Y5F/Kid7UxNsEPSy76lGX2IpoRgoPt0+6JgDWmP5dAfUn7w+w0Oc5b
+DoAGfuLyHSCJlpxFFjqo
+=rKgi
+-----END PGP SIGNATURE-----

Added: dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.md5
==============================================================================
--- dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.md5 (added)
+++ dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.tar.gz.md5 Thu Mar 20 00:05:36 2014
@@ -0,0 +1 @@
+eb43906bb7409000a36b98e54bcbdf2e

Added: dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.zip.asc
==============================================================================
--- dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.zip.asc (added)
+++ dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.zip.asc Thu Mar 20 00:05:36 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJTKi99AAoJEODyhZOu6tFRPv8P/1IHzqbjgiD/BS/v0eI96GL5
+Wou/m+WNsoZutM4ZMIeNiybSaCA7RH0ZG7vun9gQbp8/F85/GfG8V1NuHK5CS4tp
+fi1e1u7El9ioCZBjrl5g+/aiOGpFLc1/GqMBc5hSrVXPS/Tdp792kyLJQiQbn0fT
+sUg5LW2fcrE3rjJgVW/PSEax70oZ2UF3emb/wjPeqTpMwxXb3fBehrFJ1QQhvVXi
+rE27+L0fO4yv0+XfTFWHEsA3a8aMWKJRPlhVDDoMe5wN1kyAmGvhSvv363IwlWEH
+yDUkFheWRgcoJ36PGFAMgXsR9bARfyc9N2ryI4HJBI+FWIIFW2a9OuuxBPuN5eq+
+p0S3rWuYhdQ2GLPIlx78+7uKB+Nd5LfRl2ZUGBIODgIz5w76aHUuAxnaEBrO/ddm
+p2SBkxBFRqOLslaoKG58ijFAtHLbzniGMzxH5XpT9BhEIA3qz2EUTibKC1wH2iZF
++/YxqibQYgUeexO4VXv6dndnEcK7XLr5qXz6pP4SzFdpo3omQD6nGpUILqlR2tdu
+JbAm3ViR6RjC0V523MFbnVGqM+qHE97pST9CyUt/DGAZ/J2kVTLL/Auy7SeFkKBU
+LoykapLq3O3+c4C8iEhRxIsF7rDhLJGB5cwIYk6hX/1xb2bEYaRH/T/8nXAI68XL
+bt1GaP5Nck4K2NVcvdhY
+=KS9g
+-----END PGP SIGNATURE-----

Added: dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.zip.md5
==============================================================================
--- dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.zip.md5 (added)
+++ dev/flex/flexunit/4.2.0/rc2/apache-flex-flexunit-4.2.0-4.12.0-src.zip.md5 Thu Mar 20 00:05:36 2014
@@ -0,0 +1 @@
+515c98dd6f020b23f3e665aadf6a6c45

Added: dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.asc
==============================================================================
--- dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.asc (added)
+++ dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.asc Thu Mar 20 00:05:36 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJTKi9+AAoJEODyhZOu6tFRb4MQAKx7l0qztloFnWZL1Avo+rFQ
+z+XiDIr7ohCWU4qtyjQ+8GISGsrnBvHAHD5owfRWqPqDXKmSluSB+4zyNoZE01I5
+x5If+y7Ekzk6iWRnk7yGSD/zVXEyPyRGM1K9twaHApOBlGXCkP6inO4B3Up2e9y1
+JIRcL7Wbij+HCE0LOofBpbMmgcNrFKUcWS7ZVa9dpGz+bmLnv6L8/AuMSFtrPNCX
+MMo19Drg2LbK/VWm0uGp0gg9wphaEhDmSARzK67vsEAj2g+B9cabSpiqtnwY1Kud
+B2Lr0190777WEwjCD7NNYu2B37Cn0NP/7+4lK83dvqEUmbJWgbQXiVUfBnniMIpg
+LY30Q83bnEOqc0kPr7tWYlrZ+T6dwnHqd5vL2TNl0wBoV96KFlNiG9SiKp/j1hyq
+jL196fFF+9DBwdd0QRBgy4EFVBHzhouPxS/U1Tqv2WJfxcFsEITsiTTy8F5tO6+r
+Bd/LyGqpTu2X2eY4sLZVYlTlhrl2e4Pwtw/Bsyi2HP2t5IcNIf/9cr3OeG4ZK3dz
+GZc+Jvt4/deEa+zcMA3fqPKJ/bQ2/328zR5gG7mPMXAy23/p3Za4khn3KAusIX+V
+67VBaf115vHOVXXqNjNmqdR4grjaaehq9ib/mVn0N/aJzfZlCIGAuzaFCEUNnt/6
+afecipTQ0vRlP4NztzJc
+=bnkB
+-----END PGP SIGNATURE-----

Added: dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.md5
==============================================================================
--- dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.md5 (added)
+++ dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.tar.gz.md5 Thu Mar 20 00:05:36 2014
@@ -0,0 +1 @@
+9cb86ba135e14322c6a66ea7be94a3ab

Added: dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.asc
==============================================================================
--- dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.asc (added)
+++ dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.asc Thu Mar 20 00:05:36 2014
@@ -0,0 +1,18 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG/MacGPG2 v2.0.22 (Darwin)
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJTKi99AAoJEODyhZOu6tFRZ8EQAJx+HUNnRsj9StaRIHaGnZOa
+53VpzT6PNuxyZxEXSrVqM8mSBSyXTUcHag9oDUPkrJB8VJXIWISpupX/dHdjiJAw
+darMRmBjCYT2eBmM0rfb6KGY//mJKublG57bZM11kmpmu5pnjC6kRn1bc9Fpdpv2
+4MThjnPD316beFVvxr/NOQMUHSRiZGgHOzjs8aATkRHwWF13/zFrqdB2/Kbvn4uT
+GcmdtuRjHQH9KM/TPpCDeTiMhz09hnNXXIA2I4wy/SQ5qnpzqWxw5Dv6epyESTo8
+l/4yQlaeVj6gDmSW/yna6hpDWGPQqT1yk6aiFaZsMxRArfj5dzqZ3CZdUHdC0cOx
+5pBKYHlduIFeP2VEjBHb5RDAih1mPLpKZcDuxLb90mliULa5icg5w01tW5BGJdPC
+kjItdlM+v17V/k0aWrUG8aGg0rinU0ojycGOB7O5a7UqwBDVYOHKeHWMWy0X2el9
+4SlKlPJEpSdfAxnHnF72Wq0Z7Nf3bP8/0DqxcbFNAL3zByXUQtbXWdY8UuqsI6gl
+C7GSwgT5BSmspSsHw2sY141y4a8Q2tkhGTO5sBYzMYZKoSZk7q21x5wPvxKCqlge
+yjH6gVjZHCt75Rfk0FJfIYeY7QThNzs86fIUZ6CHZN3dsa9DLEKikPFSHhqTmXN+
+NwzYgNgIwzYI3869QaUg
+=+aum
+-----END PGP SIGNATURE-----

Added: dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.md5
==============================================================================
--- dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.md5 (added)
+++ dev/flex/flexunit/4.2.0/rc2/binaries/apache-flex-flexunit-4.2.0-4.12.0-bin.zip.md5 Thu Mar 20 00:05:36 2014
@@ -0,0 +1 @@
+c15260a1b3a7b2685ad5e1780bbe91c1