Eclipse Automated Testing Framework, adapted for SMILA build
============================================================

Source:
http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops4/R-4.2-201206081400/eclipse-test-framework-4.2.zip

Modifications of content to minimize it and make it work in SMILA's headless build process:
- remove directory "binary"
- in directory "feature":
  - unpack org.eclipse.test_<version>.jar, keep complete name for directory
- in directory "plugins":
  - remove 
    - org.easymock_<version>.jar
    - org.eclipse.test.performance.win32_<version>.jar
    - org.eclipse.test.performance_<version>.jar
    - org.eclipse.test.source_<version>.jar
  - unpack plugin org.eclipse.test_<version>.jar, rename directory to org.eclipse.test
  - in "org.eclipse.test"
    - edit library.xml and disable <xslt> task in line 149 (we don't need it and it doesn't work for us)
    - edit META-INF/MANIFEST.MF, "Require-Bundle:" entry: remove org.eclipse.ui and org.eclipse.ui.ide.application 
      (cause missing dependence in our test installation, not needed for the coretestapplication we use to run the tests)
    - remove jacoco jars from "lib" directory 

