You are viewing a plain text version of this content. The canonical link for it is here.
Posted to easyant-commits@incubator.apache.org by hi...@apache.org on 2011/02/17 20:23:04 UTC

svn commit: r1071768 [2/7] - in /incubator/easyant/easyant4e: ./ trunk/ trunk/org.apache.easyant/ trunk/org.apache.easyant/META-INF/ trunk/org.apache.easyant/lib/ trunk/org.apache.easyant4e.feature/ trunk/org.apache.easyant4e.releng/ trunk/org.apache.e...

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/customTargets.xml
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/customTargets.xml?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/customTargets.xml (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/customTargets.xml Thu Feb 17 20:22:56 2011
@@ -0,0 +1,208 @@
+<project name="Build specific targets and properties" default="noDefault">
+	<condition property="isNightlyBuild">
+		<equals arg1="${buildType}" arg2="N" />
+	</condition>
+	<condition property="isNightlyOrIntegrationBuild">
+		<or>
+			<equals arg1="${buildType}" arg2="N" />
+			<equals arg1="${buildType}" arg2="I" />
+		</or>
+	</condition>
+	
+	<property file="${buildHome}/pluginbuilder.config" />
+	
+	<property file="${buildDirectory}/version.properties" />
+	<property name="buildLabel" value="${buildType}-${version.full}" />
+	<property name="buildId" value="${version.full}" />
+	
+	<condition property="isCVSOrCopy" value="true">
+		<or>
+			<equals arg1="${pluginbuilder.is.cvs}" arg2="true"/>
+			<equals arg1="${pluginbuilder.is.copy}" arg2="true"/>
+		</or>
+	</condition>
+	<condition property="isSVN" value="true">
+		<equals arg1="${pluginbuilder.is.svn}" arg2="true"/>
+	</condition>
+	<condition property="isRunTests" value="true">
+		<equals arg1="${pluginbuilder.is.runtests}" arg2="true"/>
+	</condition>
+	
+	
+	<target name="allElements">
+		<condition property="isFetch" value="true">
+			<equals arg1="${target}" arg2="fetchElement"/>
+		</condition>
+	    <condition property="is.svn.fetch" value="true">
+	 		<and>
+		  		<equals arg1="${target}" arg2="fetchElement"/>
+				<equals arg1="${pluginbuilder.is.svn}" arg2="true"/>
+			</and>
+	    </condition>
+	
+		<antcall target="allElementsExceptSvnFetch"/>
+		<antcall target="fetchSubversion"/>
+	</target>
+	
+	<import file="allElements.xml"/>
+	<import file="subversionSupport.xml"/>
+	
+	
+	<!-- ===================================================================== -->
+	<!-- Check out map files from correct repository -->
+	<!-- Replace values for cvsRoot, package and mapVersionTag as desired. -->
+	<!-- ===================================================================== -->
+	<target name="getMapFiles" if="isCVSOrCopy">
+		<echo message="Copying map files."/>
+		<copy todir="${buildDirectory}/maps">
+			<fileset dir="${buildHome}/maps" includes="*.map"></fileset>
+		</copy>
+	</target>
+	
+	<!-- ===================================================================== -->
+	<!-- Steps to do before setup -->
+	<!-- ===================================================================== -->
+	<target name="preSetup">	
+	</target>
+	<!-- ===================================================================== -->
+	<!-- Steps to do after setup but before starting the build proper -->
+	<!-- ===================================================================== -->
+	<target name="postSetup">
+	</target>
+	<!-- ===================================================================== -->
+	<!-- Steps to do before fetching the build elements -->
+	<!-- ===================================================================== -->
+	<target name="preFetch">
+	</target>
+	<!-- ===================================================================== -->
+	<!-- Steps to do after fetching the build elements -->
+	<!-- ===================================================================== -->
+	<target name="postFetch">
+		<condition property="is.fetch" value="true">
+			<available file="${buildDirectory}/plugins"/>
+		</condition>
+		<fail unless="is.fetch" message="There was no plug-in fetched. Was the configuration generated? Is the repository correct?"/>
+		<antcall target="replaceVersions"/>		
+	</target>
+	
+	<target name="replaceVersions">
+		<fail unless="version.full" message="Property version.full must be set" />
+		<fail unless="version.qualifier" message="Property version.qualifier must be set" />
+	
+		<echo message="Updating versions in feature and plugin manifests. Full version: ${version.full}, qualifier: ${version.qualifier}"/>
+		<replaceregexp
+            match="(&lt;feature[^&gt;]*version=)&quot;0.0.0&quot;"
+            replace="\1&quot;${version.full}&quot;"
+			byline="false"
+			flags="s">
+			  <fileset dir="${buildDirectory}/features" includes="**/feature.xml"/>
+		</replaceregexp>
+		<replaceregexp
+            match="(&lt;feature[^&gt;]*version=&quot;.*)qualifier&quot;"
+            replace="\1${version.qualifier}&quot;"
+			byline="false"
+			flags="s">
+			  <fileset dir="${buildDirectory}/features" includes="**/feature.xml"/>
+		</replaceregexp>
+		<!-- in a manual build started with export from the feature.xml, there is no
+			need to replace the versions in the plugin.xml files if they are set to 0.0.0,
+			but here it needs to be -->
+		<replace dir="${buildDirectory}/plugins">
+			<include name="**/plugin.xml"/>
+			<replacefilter token="0.0.0" value="${version.full}" />
+		</replace>
+		<replace dir="${buildDirectory}/plugins">
+			<include name="**/META-INF/MANIFEST.MF"/>
+			<replacefilter token="Bundle-Version: 0.0.0" value="Bundle-Version: ${version.full}" />
+			<replacefilter token="qualifier" value="${version.qualifier}" />
+		</replace>	
+	</target>	
+	<!-- ===================================================================== -->
+	<!-- Steps to do before generating the build scripts. -->
+	<!-- ===================================================================== -->
+	<target name="preGenerate">
+		<!-- fail unless="featureVersion" message="Property featureVersion must be set.
+		 Either directly or in case of a nightly build with nightlyBuildFeatureVersionPrefix." />
+		 -->
+	</target>
+	<!-- ===================================================================== -->
+	<!-- Steps to do after generating the build scripts. -->
+	<!-- ===================================================================== -->
+	<target name="postGenerate">
+	</target>
+	<!-- ===================================================================== -->
+	<!-- Steps to do before running the build.xmls for the elements being built. -->
+	<!-- ===================================================================== -->
+	<target name="preProcess">
+	</target>
+	<!-- ===================================================================== -->
+	<!-- Steps to do after running the build.xmls for the elements being built. -->
+	<!-- ===================================================================== -->
+	<target name="postProcess">
+	</target>
+	<!-- ===================================================================== -->
+	<!-- Steps to do before running assemble. -->
+	<!-- ===================================================================== -->
+	<target name="preAssemble">
+	</target>
+	<!-- ===================================================================== -->
+	<!-- Steps to do after  running assemble. -->
+	<!-- ===================================================================== -->
+	<target name="postAssemble">
+	</target>
+	<!-- ===================================================================== -->
+	<!-- Steps to do before/after packaging RCP. -->
+	<!-- ===================================================================== -->
+	<target name="prePackage">
+	</target>
+	
+	<target name="postPackage">
+		<!-- copy build results for rcp build -->
+		<copy todir="${buildResultsDirectory}" flatten="true">
+			<fileset dir="${buildDirectory}" includes="${buildType}-**/*.zip" />
+		</copy>
+	</target>
+
+	<!-- ===================================================================== -->
+	<!-- Steps to do after the build is done. -->
+	<!-- ===================================================================== -->
+	<property name="buildResultsDirectory" value="${buildDirectory}/results" />
+	<target name="postBuild" depends="-prepareBuildResultsDirectory" unless="no.postBuild">
+		<antcall target="runTests"/>
+		<copy todir="${buildResultsDirectory}" flatten="true">
+			<fileset dir="${buildDirectory}" includes="${buildType}-**/*.zip" />
+		</copy>
+		<condition property="is.External.Postbuild">
+			<available file="${buildHome}/build-files/postBuild.xml"/>
+		</condition>
+		<antcall target="callExternalPostBuild"/>
+	</target>
+	<!-- ===================================================================== -->
+	<!-- Run tests. -->
+	<!-- ===================================================================== -->
+	<target name="runTests" if="isRunTests">
+		<property name="automatedTestsHome" location="${buildHome}/build-files/automatedTests"/>
+
+		<ant antfile="${automatedTestsHome}/run-tests.xml" target="run" dir="${automatedTestsHome}">
+			<property name="test.result.dir" value="${buildResultsDirectory}/testresults"/>
+		</ant>
+	</target>	
+	<!--======================================================-->
+	<!-- Gather build results  -->
+	<!-- ==================================================== -->
+	<target name="-prepareBuildResultsDirectory">
+		<echo message="Creating ${buildResultsDirectory}" />
+		<mkdir dir="${buildResultsDirectory}" />	
+	</target>
+
+	<!--======================================================-->
+	<!-- Call External post build file if available -->
+	<!-- ==================================================== -->
+	<target name="callExternalPostBuild" if="is.External.Postbuild">
+		<ant antfile="${buildHome}/build-files/postBuild.xml"/>
+	</target>
+	
+	<target name="noDefault">
+		<echo message="You must specify a target when invoking this file" />
+	</target>
+</project>

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/customTargets.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/customTargets.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/customTargets.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/fetchSvnAll.xml
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/fetchSvnAll.xml?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/fetchSvnAll.xml (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/fetchSvnAll.xml Thu Feb 17 20:22:56 2011
@@ -0,0 +1,5 @@
+<project name="Generated">
+  <target name="fetch.svn.all">
+    <!-- use pluginbuilder editor to change content -->
+  </target>
+</project>
\ No newline at end of file

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/fetchSvnAll.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/fetchSvnAll.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/fetchSvnAll.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/pluginbuilder-anttasks.jar
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/pluginbuilder-anttasks.jar?rev=1071768&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/pluginbuilder-anttasks.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/postBuild.xml
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/postBuild.xml?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/postBuild.xml (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/postBuild.xml Thu Feb 17 20:22:56 2011
@@ -0,0 +1,109 @@
+<project name="Run as part of postBuild" default="main">
+	<taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="${buildHome}/build-files/ant-contrib.jar" />
+	<taskdef resource="org/pluginbuilder/anttasks/pluginbuildertasks.properties" classpath="${buildHome}/build-files/pluginbuilder-anttasks.jar" />
+	
+	
+    <target name="main">
+    	<property name="UpdateSiteStagingLocation" value="${buildDirectory}/tmpUpdateSite/updateSite"/>
+    	<property name="UpdateSiteFinalLocation" value="${buildResultsDirectory}/../updateSite"/>
+    	<property name="siteXmlFile" value="${UpdateSiteStagingLocation}/site.xml"/>
+    	
+        <antcall target="-generateUpdateSite"/>
+    	<antcall target="-createNightlyBuildSiteXml"/>
+    	<zip destfile="${buildResultsDirectory}/updateSite-${version.full}.zip" basedir="${UpdateSiteStagingLocation}"/>
+    	<antcall target="deleteSiteXml"/>
+    	<copy todir="${UpdateSiteFinalLocation}">
+    		<fileset dir="${UpdateSiteStagingLocation}" includes="**"/>
+    	</copy>
+    	<delete dir="${UpdateSiteStagingLocation}/../.." includes="tmpUpdateSite/**" includeemptydirs="true"/>
+    	<antcall target="-p2"/>
+    </target>
+	
+	<target name="deleteSiteXml" unless="isNightlyBuild">
+		<!-- in release builds the site.xml should not be overwritten, so older version can survive -->
+		<delete file="${siteXmlFile}"/>
+	</target>
+    
+    <!--======================================================-->
+    <!-- UpdateSite Export target, to be called from allElements  -->
+    <!-- ==================================================== -->
+    <target name="updateSiteExport">
+        <ant antfile="build.xml" dir="${buildDirectory}/features/${id}/" target="build.update.jar">
+            <property name="feature.destination" value="${UpdateSiteStagingLocation}/features"/>
+            <property name="plugin.destination" value="${UpdateSiteStagingLocation}/plugins"/>
+        </ant>
+    </target>
+    
+    <target name="-generateUpdateSite">
+        <!-- Create the directory structure -->
+        <mkdir dir="${UpdateSiteStagingLocation}"/>
+        <mkdir dir="${UpdateSiteStagingLocation}/features"/>
+        <mkdir dir="${UpdateSiteStagingLocation}/plugins"/>
+    	<condition property="jarProcessor.sign" value="true">
+    		<istrue value="${signJars}"/>
+    	</condition>
+        <!-- Build the jar files -->
+        <ant antfile="${builder}/customTargets.xml" target="allElements">
+            <property name="genericTargets" value="${builder}/postBuild.xml"/>
+            <property name="target" value="updateSiteExport"/>
+        </ant>
+        <!-- site.xml files for integration and release builds are handled elsewhere -->
+        <antcall target="-createNightlyBuildSiteXml"/>
+        <delete dir="${buildDirectory}/temp.updatesite"/>
+    </target>
+	
+    <target name="-createNightlyBuildSiteXml">
+    	<echo>${siteXmlFile}</echo>
+        <echo file="${siteXmlFile}">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
+&lt;site&gt;
+		&lt;description&gt;${updateSiteDescription}&lt;/description&gt;
+</echo>
+    	<foreach list="${pluginbuilder.features}" delimiter="," target="-appendFeatureElement" param="featureId" inheritall="true"/> 
+        <echo file="${siteXmlFile}" append="true">		&lt;category-def name=&quot;${updateSiteCategoryName}&quot;
+            label=&quot;${updateSiteCategoryLabel}&quot;&gt;
+		&lt;/category-def&gt;
+&lt;/site&gt;</echo>
+    </target>
+
+	<target name="-appendFeatureElement">
+		<!-- we can not rely on ${version.full} at this point since people could use
+			a fix feature id like 0.5.0.qualifier. ${version.full} would only work if
+			the feature were set to 0.0.0 --> 
+		<loadfile property="featurexml" srcfile="${buildDirectory}/features/${featureId}/feature.xml"/>
+		<SetRegex input="${featurexml}" match="^.*&lt;feature.+?version=&quot;(.+?)&quot;.*$" property="realFeatureVersion" value="\1" />
+    	<echo file="${siteXmlFile}" append="true">		&lt;feature 
+		url=&quot;features/${featureId}_${realFeatureVersion}.jar&quot; 
+		id=&quot;${featureId}&quot; 
+		version=&quot;${realFeatureVersion}&quot;&gt; 
+    	&lt;category name=&quot;${updateSiteCategoryName}&quot;/&gt; 
+		&lt;/feature&gt;
+</echo>    	
+    </target>
+	
+	<target name="-p2">
+		<condition property="is.p2" value="true">
+				<equals  arg1="${generate.p2.metadata}" arg2="true"/>
+		</condition>
+		<property name="p2archive" value="${buildResultsDirectory}/p2-repository-${version.full}.zip"/>
+		<antcall target="-createP2Archive"/>
+		<antcall target="-createP2UpdateSite"/>
+	</target>
+		
+	<target name="-createP2Archive" if="is.p2">
+		<pathconvert property="repodir">
+			<resources>
+			      <url url="${p2.metadata.repo}"/>
+			</resources>
+			<map from="file:" to=""/>
+		</pathconvert>
+		<zip destfile="${p2archive}" basedir="${repodir}"/>
+	</target>
+	
+	<target name="-createP2UpdateSite" if="is.p2">
+		<property name="p2updatesite" value="${buildResultsDirectory}/../p2-updateSite"/>
+		<delete dir="${p2updatesite}"/>
+		<mkdir dir="${p2updatesite}"/>
+		<unzip src="${p2archive}" dest="${p2updatesite}"/>
+	</target>
+	
+</project>

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/postBuild.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/postBuild.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/postBuild.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/subversionSupport.xml
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/subversionSupport.xml?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/subversionSupport.xml (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/subversionSupport.xml Thu Feb 17 20:22:56 2011
@@ -0,0 +1,26 @@
+<project name="to be included into customTargets.xml">
+
+	<import file="fetchSvnAll.xml"/>
+
+	<path id="project.classpath">
+		<pathelement location="${buildHome}/build-files/svn/svnant.jar"/>
+		<pathelement location="${buildHome}/build-files/svn/svnClientAdapter.jar"/>
+	</path>
+	
+  	<target name="fetchSubversion" if="is.svn.fetch">
+  		 <taskdef resource="svntask.properties" classpathref="project.classpath"/>
+  		 <property name="fetchTag" value="HEAD"/>
+  		 <antcall target="fetch.svn.all"/>
+  	</target>
+    
+    <target name="svn.co">
+    	<property name="target.dir" value="${element.id}"/>
+    	<condition property="svn.url" value="${pluginbuilder.svn.url}" else="${url}">
+    		<isset property="pluginbuilder.svn.url"/>
+    	</condition>
+     	<svn javahl="false" username="${pluginbuilder.svn.user}" password="${pluginbuilder.svn.password}">
+  			<checkout revision="${fetchTag}" url="${svn.url}/${project.name}" destPath="${buildDirectory}/${target}/${target.dir}" />
+  		</svn>    	
+	</target>  
+
+</project>
\ No newline at end of file

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/subversionSupport.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/subversionSupport.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/subversionSupport.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/svn/SVNCLIENTADAPTER-LICENSE
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/svn/SVNCLIENTADAPTER-LICENSE?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/svn/SVNCLIENTADAPTER-LICENSE (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/svn/SVNCLIENTADAPTER-LICENSE Thu Feb 17 20:22:56 2011
@@ -0,0 +1,185 @@
+SVNClientAdapter Library License
+
+This license applies to all portions of SVNClientAdapter library, which 
+are not externally-maintained libraries (e.g. JavaHL or JavaSVN).
+
+Such libraries have their own licenses; we recommend you read them, as
+their terms may differ from the terms below.
+
+=============================================================================
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
\ No newline at end of file

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/svn/svnClientAdapter.jar
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/svn/svnClientAdapter.jar?rev=1071768&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/svn/svnClientAdapter.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/svn/svnant.jar
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/svn/svnant.jar?rev=1071768&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build-files/svn/svnant.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build.properties
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build.properties?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build.properties (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build.properties Thu Feb 17 20:22:56 2011
@@ -0,0 +1,210 @@
+# The prefix that will be used inside the generated archive. This should be set to eclipse
+# so that the archive can be directly unzipped into the dropins directory of the
+# Eclipse installation.
+# @category packaging
+archivePrefix=eclipse
+
+# The location under which all of the build output will be collected.
+# @category packaging
+collectingFolder=${archivePrefix}
+
+# Choose configurations if you want to build configuration specific plug-ins. However, if you
+# only want to create RCP distributables for different platforms do not change the default
+# *,*,*. If you select any other entry than *,*,* you also have to provide an assemble task in allElements.xml. 
+# @category compiling
+# @type list separator=&;values=*,*,*&win32,win32,x86&linux,gtk,ppc&linux,gtk,x86 & linux,gtk,x86_64 & linux,motif,x86 & solaris,motif,sparc & solaris,gtk,sparc & aix,motif,ppc & hpux,motif,PA_RISC & macosx,carbon,ppc & macosx,carbon,x86
+#configs=*,*,*
+
+
+# By default PDE creates one archive (result) per entry listed in the configs property.
+# Setting this value to true will cause PDE to only create one output containing all 
+# artifacts for all the platforms listed in the configs property.
+# @category packaging
+# @type Boolean
+#groupConfigurations=false
+
+#The format of the archive. By default a zip is created using antZip.
+#The list can only contain the configuration for which the desired format is different than zip.
+# E.g. win32,win32,x86 - antZip
+#archivesFormat=
+	
+# Set to true for Jnlp generation
+# @category jnlp
+# @type Boolean
+# generateJnlp=false
+
+# Codebase should be a URL that will be used as the root of all relative URLs in the output.
+# @category jnlp
+#jnlp.codebase=<codebase url>
+
+# @category jnlp
+#jnlp.j2se=<j2se version>
+
+# @category jnlp
+#jnlp.locale=<a locale>
+
+# Generate <offlineAllowed/> attribute in the generated features
+# @category jnlp
+# @type Boolean
+#jnlp.generateOfflineAllowed=
+
+# Set to ${configs} in order to filter the content of the generated jnlp files based on the configuration being built
+# @category jnlp
+# @type enum values=${configs} 
+# jnlp.configs=			
+
+# Check if you want to sign jars
+# @type Boolean
+# @category jarsigning
+#signJars=false
+
+# The Alias used for signing jars
+# @category jarsigning
+#sign.alias=
+
+# A path to the keystore used for signing jars
+# @category jarsigning
+#sign.keystore=
+
+# The password for the keystore
+# @category jarsigning
+#sign.storepass=
+
+#Arguments to send to the zip executable
+# @category packaging
+zipargs=
+
+#Arguments to send to the tar executable
+# @category packaging
+tarargs=
+
+# Control the creation of a file containing the version included in each configuration - on by default
+# @type Boolean 
+#generateVersionsLists=true
+
+# Indicates whether you want the set of plug-ins and features to be considered during the build to be limited to the ones reachable from the features / plugins being built
+# @type Boolean
+filteredDependencyCheck=false
+
+# Indicates whether the resolution should be done in development mode (i.e. ignore multiple bundles with singletons)
+# @type Boolean
+resolution.devMode=false
+
+#pluginPath is a list of locations in which to find plugins and features.  This list is separated by the platform file separator (; or :)
+#a location is one of:  
+#- the location of the jar or folder that is the plugin or feature : /path/to/foo.jar or /path/to/foo
+#- a directory that contains a /plugins or /features subdirectory
+#- the location of a feature.xml, or for 2.1 style plugins, the plugin.xml or fragment.xml
+#pluginPath=
+
+
+# The location of the Java jars to compile against.  Typically the rt.jar for your JDK/JRE
+# @category compiling
+# bootclasspath=${java.home}/lib/rt.jar
+
+# @category executionEnvironment
+#CDC-1.0/Foundation-1.0=
+# @category executionEnvironment
+#CDC-1.1/Foundation-1.1=
+# @category executionEnvironment
+#OSGi/Minimum-1.0=
+# @category executionEnvironment
+#OSGi/Minimum-1.1=
+# @category executionEnvironment
+#JRE-1.1=
+# @category executionEnvironment
+#J2SE-1.2=
+# @category executionEnvironment
+#J2SE-1.3=
+# @category executionEnvironment
+#J2SE-1.4=
+# @category executionEnvironment
+#J2SE-1.5=
+# @category executionEnvironment
+#JavaSE-1.6=
+# @category executionEnvironment
+#PersonalJava-1.1=
+# @category executionEnvironment
+#PersonalJava-1.2=
+# @category executionEnvironment
+#CDC-1.0/PersonalBasis-1.0=
+# @category executionEnvironment
+#CDC-1.0/PersonalJava-1.0=
+# @category executionEnvironment
+#CDC-1.1/PersonalBasis-1.1=
+# @category executionEnvironment
+#CDC-1.1/PersonalJava-1.1=
+
+# Specify the output format of the compiler log when eclipse jdt is used
+# @category compiling
+logExtension=.log
+
+# Whether or not to include debug info in the output jars
+# @category compiling
+# @type Boolean
+javacDebugInfo=false
+
+# Whether or not to fail the build if there are compiler errors
+# @category compiling
+# @type Boolean
+javacFailOnError=true
+
+# Enable or disable verbose mode of the compiler
+# @category compiling
+# @type Boolean
+javacVerbose=false
+
+# Extra arguments for the compiler. These are specific to the java compiler being used.
+# @category compiling
+#compilerArg=
+
+# Default value for the version of the source code. This value is used when compiling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or set javacSource in build.properties
+# @type enum values=1.1,1.2,1.3,1.4,1.5,1.6
+# @category compiling
+#javacSource=1.3
+javacSource=1.5
+
+# Default value for the version of the byte code targeted. This value is used when compiling plug-ins that do not set the Bundle-RequiredExecutionEnvironment or set javacTarget in build.properties.
+# @type enum values=1.1,1.2,1.3,1.4,1.5,1.6
+# @category compiling
+#javacTarget=1.1
+javacTarget=1.5
+
+# Set the description for the update site. The update manager shows the description in the Updates dialog.
+# @category updateSite
+updateSiteDescription=Update site generated by pluginbuilder.
+
+# There will be one category for the generated update site. Here you can set the name.
+# It is more like an id with which features refer to their category and does not appear in the GUI.
+# @category updateSite
+updateSiteCategoryName=Builds
+
+# Here you can set the Label of the category which will be displayed in the Updates dialog.
+# @category updateSite
+updateSiteCategoryLabel=Nightly Builds
+
+# Create a provisioning (p2) repository. Since Eclipse 3.4 it is recommended that you create
+# a p2 repository for your features.
+# However, the installation of old-style (pre p2) update sites is still possible.
+# @type Boolean
+# @category p2
+generate.p2.metadata=true
+
+# @category hidden
+p2.metadata.repo=file:${buildDirectory}/repo
+
+# @category hidden
+p2.artifact.repo=file:${buildDirectory}/repo
+
+# The name of the metadata repository. The Update Manager will display this name.
+# @category p2
+p2.metadata.repo.name=EasyAnt For Eclipse Update Site
+
+# The name of the artifacts repository
+# @category p2
+p2.artifact.repo.name=Artifact Repo Name
+
+# @category hidden
+p2.flavor=tooling
+# @category hidden
+p2.publish.artifacts=true
\ No newline at end of file

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build.properties
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build.xml
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build.xml?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build.xml (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build.xml Thu Feb 17 20:22:56 2011
@@ -0,0 +1,243 @@
+<!--  This script will not be uploaded to the server.
+      PLEASE DO NOT MODIFY 
+      If you modify this script it is likely that the build will not work on the server
+-->
+<project name="Build Facade" default="main">
+	<taskdef resource="org/pluginbuilder/anttasks/pluginbuildertasks.properties" classpath="build-files/pluginbuilder-anttasks.jar" />
+	
+	<GetHostName />
+	<property file="build_${hostname}.properties" />
+	<property file="build_local.properties" />
+	<property name="eclipse.installation.dir" value="${eclipseDir}"/>
+	<import file="build-files/build_shared.xml"/>
+	
+	<target name="-properties">		
+		
+		<!-- versioning -->
+		<property name="build.version" value="HEAD"/>
+		<property name="releaseConfigFile" value="releases/${build.version}.properties"/>
+		<condition property="releaseConfigFile.exists">
+			<available file="${releaseConfigFile}"/>
+		</condition>
+		<fail message="Could not read release config file: ${releaseConfigFile}" unless="releaseConfigFile.exists"/>
+		<property file="${releaseConfigFile}" />
+
+		<tstamp>
+		      <format property="version.qualifier" pattern="yyyyMMddHHmm" timezone="GMT" unit="minute"/>
+		</tstamp>
+		
+		<property name="buildTypePresentation" value=""/>
+		<property name="version.full" value="${version}.${version.qualifier}${buildTypePresentation}"/>
+
+		<!-- includes -->
+		<GetHostName />
+		<property file="build_${hostname}.properties" />
+		<property file="build_local.properties" />
+		<property file="pluginbuilder.config" />
+		
+		<!-- set defaults -->
+		<property name="buildTarget" value="main"/>
+		<property name="verboseAnt" value="-Ddummy=true"/>
+		
+		<!-- check if clean should be called -->
+		<condition property="is.clean">
+			<or>
+				<equals arg1="main" arg2="${buildTarget}" trim="true"/>
+		   		<equals arg1="fetch" arg2="${buildTarget}" trim="true"/>
+			</or>
+		</condition>
+		
+		<condition property="no.rcp.build" value="true">
+			<not>
+				<equals arg1="${pluginbuilder.is.rcpbuild}" arg2="true"/>
+			</not>
+		</condition>
+				
+	</target>
+		
+	<target name="-prepare.build.host">
+
+		<antcall target="unpack.eclipse"/>
+		
+		<available type="dir" file="${eclipseDir}/plugins" property="eclipseDir.plugins.exists"/>
+		<fail message="Could not find directory ${eclipseDir}/plugins. Please check eclipseDir in build_local.properties" unless="eclipseDir.plugins.exists"/>
+		
+		<!-- determine buildfiles -->
+		<BundleFileLocator eclipseInstallationRoot="${eclipseDir}" bundleId="org.eclipse.pde.build" filePath="scripts/build.xml" property="regularbuildfile" />		
+		<dirname file="${regularbuildfile}" property="scriptdir"/>
+		<property name="productbuildfile" value="${scriptdir}/productBuild/productBuild.xml"/>
+	
+		<!-- determine launcher -->
+		<BundleFileLocator eclipseInstallationRoot="${eclipseDir}" bundleId="org.eclipse.equinox.launcher" property="equinoxjar" />		
+
+	</target>
+	
+	<target name="-clean" if="is.clean">
+		<echo level="info" message="Cleaning directory ${buildDirectory}"/>
+		<delete dir="${buildDirectory}" verbose="false"/>
+		<mkdir dir="${buildDirectory}"/>
+	</target>
+	
+	<target name="-build" depends="-properties,-clean,-prepare.build.host">
+		<condition property="no.rcp.build" value="true">
+			<not>
+				<equals arg1="${pluginbuilder.is.rcpbuild}" arg2="true"/>
+			</not>
+		</condition>
+		<antcall target="-build.internal">
+			<param name="buildfile" value="${regularbuildfile}"/>
+	    </antcall>
+		<!-- build rcp omitting fetch -->
+		<property name="buildSystemProperty.skipFetch" value="true"/>
+		<antcall target="-build.rcp.internal"/>
+	</target>
+	
+	<target name="-build.rcp.internal" unless="no.rcp.build">
+		<property prefix="buildSystemProperty." file="${buildHome}/build-files/build_rcp.properties"/>
+		<antcall target="-checkProductProperty"/>
+		<antcall target="-build.internal"> 
+			<param name="buildfile" value="${productbuildfile}"/>
+		</antcall>
+	</target>
+
+	<target name="-checkProductProperty">
+		<condition property="isProductSet">
+			<and>
+				<isset property="buildSystemProperty.product"/>
+				<not><equals arg1="${product}" arg2=""/></not>
+			</and>
+		</condition>
+		<fail message="Building an RCP application requires a Product Configuration file to be specified ('product' property)." unless="isProductSet"/>
+	</target>
+	
+	<target name="rcp" depends="-properties,-clean,-prepare.build.host" description="Build RCP only">
+		<fail message="Please enable and configure an RCP build in the Plug-in Builder Editor before calling this target." if="no.rcp.build"/>
+		<antcall target="-build.rcp.internal"/>
+	</target>
+
+	<target name="-build.internal">
+		<property name="buildResultsDirectory" value="${buildDirectory}/results" />
+		
+		<java classname="org.eclipse.equinox.launcher.Main" fork="true" 
+			failonerror="true" errorproperty="build.stderr">
+			<arg value="-ws" />
+			<arg value="${ws}" />
+			<arg value="-os" />
+			<arg value="${os}" />
+			<arg value="-application" />
+			<arg value="org.eclipse.ant.core.antRunner" />
+			<arg value="-buildfile" />
+			<arg value="${buildfile}" />
+			<arg value="${buildTarget}" />
+			<arg value="-data" />
+			<arg value="${buildDirectory}/workspace" />
+			<arg value="${verboseAnt}"/>
+			<jvmarg value="-Dbasews=${ws}" />
+			<jvmarg value="-Dbaseos=${os}" />
+			<jvmarg value="-Dbasearch=${arch}" />
+			<jvmarg value="-Dbuilder=${buildHome}/build-files" />
+			<jvmarg value="-DjavacFailOnError=true"/>
+			<jvmarg value="-DbuildDirectory=${buildDirectory}"/>
+			<jvmarg value="-DbuildResultsDirectory=${buildResultsDirectory}"/>
+			<jvmarg value="-DbaseLocation=${eclipseDir}"/>
+			<jvmarg value="-DbuildHome=${buildHome}"/>
+			<jvmarg value="-Dversion.full=${version.full}"/>
+			<jvmarg value="-Dversion.qualifier=${version.qualifier}${buildTypePresentation}"/>
+			<jvmarg value="-DbuildType=${buildType}"/>
+			<jvmarg value="-DfetchTag=${fetchTag}"/>
+			<jvmarg value="-DbuildProperties=${buildHome}/build-files/build.properties"/>
+
+			<classpath>
+				<pathelement location="${equinoxjar}" />
+			</classpath>
+			
+			<syspropertyset>
+				<propertyset>
+					<propertyref prefix="buildSystemProperty"/>
+					<mapper type="glob" from="buildSystemProperty.*" to="*"/>
+				</propertyset>
+			</syspropertyset>
+		</java>
+		
+		<!-- save stderr for scrutinizing later -->
+		<echo file="${buildDirectory}/stderr.txt">${build.stderr}</echo>
+		
+		<echo taskname="stderr">${build.stderr}</echo>
+		
+		<condition property="is.build.error" value="true">
+			<contains string="${build.stderr}" substring="BUILD FAILED"/>
+		</condition>
+		<!-- Note that the fail task throws an exception which will be intercepted
+		     from calling antcalls. During that processing the status will 
+		     be lost and set to 1. Therefor ethe processing of TESTS FAILED which should 
+		     return an exit status of 2 can only take place in main targets. --> 
+		<fail message="PDE Build failed" if="is.build.error" status="1"/>
+
+	</target>
+	
+	<target name="main-cc"
+			description="This target is suited to be run from cruisecontrol. The property 'label' is expected to be set from cruisecontrol.">
+		<!-- Note that pluginbuilder also provides an EclipseLabelIncrementer which creates Eclipse version labels.
+			see http://www.pluginbuilder.org/faq.html -->
+		<property name="version.full" value="${label}"/> 
+		<SetRegex input="${label}" match=".+\..+\..+\.(.*)" property="version.qualifier" value="\1" />
+		<antcall target="-build"/>
+	</target>
+	
+	<target name="main" description="Run the main target of customTargets.xml. Return status 0,1,2 for Success, Build Failure and Test Failure">
+		<property name="buildTarget" value="main"/>
+		<antcall target="-build"/>
+
+		<!-- this must be done in a top level target because otherwise the 
+		     status would not get throuhg. If fail is called somewhere within
+		     an antcall the created exception will be caught which would result
+		     in a return status of 1 -->
+		<loadfile srcFile="${buildDirectory}/stderr.txt" property="build.stderr"/>
+		<condition property="is.tests.failed" value="true">
+			<contains string="${build.stderr}" substring="TESTS FAILED"/>
+		</condition>
+		<fail message="Tests failed" if="is.tests.failed" status="2"/>		
+	</target>
+
+	<target name="fetch" description="Run the fetch target of customTargets.xml.">
+		<property name="buildTarget" value="fetch"/>
+		<antcall target="-build"/>
+	</target>	
+	
+	<target name="generate" description="Run the generate target of customTargets.xml.">
+		<property name="buildTarget" value="generate"/>
+		<antcall target="-build"/>
+	</target>
+	
+	<target name="process" description="Run the process target of customTargets.xml.">
+		<property name="buildTarget" value="process"/>
+		<antcall target="-build"/>
+	</target>
+			
+	<target name="assemble" description="Run the assemble target of customTargets.xml.">
+		<property name="buildTarget" value="assemble"/>
+		<antcall target="-build"/>
+	</target>
+	
+	<target name="postBuild" description="Run the postBuild target of customTargets.xml.">
+		<property name="buildTarget" value="postBuild"/>
+		<antcall target="-build"/>
+		<!-- see main for a description why this must take place here. It is very ugly -->
+		<loadfile srcFile="${buildDirectory}/stderr.txt" property="build.stderr"/>
+		<condition property="is.tests.failed" value="true">
+			<contains string="${build.stderr}" substring="TESTS FAILED"/>
+		</condition>
+		<fail message="Tests failed" if="is.tests.failed" status="2"/>
+	</target>
+	
+	<target name="buildProperties" description="Print out derived properties for the current build." depends="-properties">
+		<fail message="You have to set the property 'buildPropertiesFile' if calling buildProperties" unless="buildPropertiesFile"/>
+		<condition property="subdir" value="nightly" else="releases">
+			<equals arg1="${buildType}" arg2="N"/>
+		</condition>
+		<echo file="${buildPropertiesFile}">relativeServerResultsDir: ${subdir}
+version.full: ${version.full}
+version.qualifier: ${version.qualifier}</echo>
+	</target>
+
+</project>
\ No newline at end of file

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build_local.properties
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build_local.properties?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build_local.properties (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build_local.properties Thu Feb 17 20:22:56 2011
@@ -0,0 +1,26 @@
+# The location of this pluginbuilder project. It provides the base directory for the build scripts.
+# @category localsettings
+# @type Directory
+buildHome=/home/jerome/tools/easyant/easyant4e.git/org.apache.easyant4e.releng
+
+# The directory where the build takes place. This directory WILL BE DELETED before every build.
+# @category localsettings
+# @type Directory
+buildDirectory=/home/jerome/pluginbuilder/org.apache.easyant4e.releng
+
+# The eclipse build host. Must be an Eclipse SDK installation with JDT and PDE. And in the case of RCP builds the RCP Delta Pack must be included, too.
+# @category localsettings
+# @type Directory
+eclipseDir=/home/jerome/tools/easyant/eclipse
+
+# Environment for both the Eclipse build and test host. Determines baseos.
+# @category localsettings
+os=linux
+
+# Environment for both the Eclipse build and test host. Determines basews.
+# @category localsettings
+ws=gtk
+
+# Environment for both the Eclipse build and test host. Determines basearch.
+# @category localsettings
+arch=x86
\ No newline at end of file

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build_local.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build_local.properties
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build_shared.xml
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build_shared.xml?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build_shared.xml (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build_shared.xml Thu Feb 17 20:22:56 2011
@@ -0,0 +1,116 @@
+<project name="Shared build targets">
+	<!-- the following properties must be set from the calling script 
+    <property name="eclipse.installation.dir" value="${buildDirectory}"/>
+    <property name="eclipse.local.tar.non.server" value="${test.eclipse.zip}"/>
+    eclipse.download.cache,pluginbuilder.eclipse.url
+    optional:
+    <property name="pluginbuilder.additional.feature.urls" value="featureurl1,featureurl2"/>
+    -->
+    
+	<taskdef resource="net/sf/antcontrib/antcontrib.properties" classpath="${buildHome}/build-files/ant-contrib.jar" />
+	
+	<target name="unpack.eclipse">
+		<condition property="unpack.eclipse">
+			<not>
+				<available type="dir" file="${eclipse.installation.dir}"/>
+			</not>
+		</condition>
+		<antcall target="-unpack.eclipse.ifnecessary"/>
+	</target>    
+    
+	<!-- call either with or feature.url or pluginbuilder.eclipse.url
+		 sets property archive.location to the archive path in download cache.
+	 -->
+	<target name="-set.archive.location" if="pluginbuilder.is.server">
+		<!-- set default, useful for server where pluginbuilder.eclipse.url.default can be specified in build_local.properties --> 
+		<property name="pluginbuilder.eclipse.url" value="${pluginbuilder.eclipse.url.default}"/>
+		<condition property="archive.url" value="${feature.url}" else="${pluginbuilder.eclipse.url}">
+				<isset property="feature.url"/>
+		</condition>
+		<mkdir dir="${eclipse.download.cache}"/>
+		<tempfile destdir="${eclipse.download.cache}" property="tmp.file" suffix=".txt" prefix="downloadurl"/>		
+		<echo file="${tmp.file}" message="${archive.url}"/>
+		<checksum file="${tmp.file}" property="pluginbuilder.eclipse.url.checksum"/>
+		<delete file="${tmp.file}"/>
+		<property name="archive.location" value="${eclipse.download.cache}/${pluginbuilder.eclipse.url.checksum}"/>
+		<!-- <echo message="${archive.location} is archive location for ${archive.url}"/> -->
+	</target>
+	
+	<target name="-set.eclipse.local.tar.server" if="pluginbuilder.is.server" depends="-set.archive.location">
+		<property name="eclipse.local.tar" value="${archive.location}"/>
+	</target>
+	
+	<target name="-set.eclipse.local.tar.non.server" unless="pluginbuilder.is.server">
+		<property name="eclipse.local.tar" value="${eclipse.local.tar.non.server}"/>
+	</target>
+	
+	<target name="-get.archive.ifnecessary" unless="eclipse.is.downloaded">
+		<condition property="archive.url" value="${feature.url}" else="${pluginbuilder.eclipse.url}">
+				<isset property="feature.url"/>
+		</condition>
+		<get src="${archive.url}" dest="${archive.location}" />		
+	</target>
+	
+	<target name="-get.archive" depends="-set.archive.location" if="pluginbuilder.is.server">
+		<condition property="eclipse.is.downloaded">
+			<available file="${archive.location}" property="${eclipse.is.downloaded}"/>
+		</condition>		
+		<antcall target="-get.archive.ifnecessary"/> 
+	</target>
+	
+	<target name="-get.features" if="pluginbuilder.is.server" >
+		<property name="pluginbuilder.feature.urls" value="${pluginbuilder.feature.urls.default}"/>
+		<foreach list="${pluginbuilder.feature.urls}" param="feature.url" delimiter="," target="-get.archive" inheritall="true"/>
+	</target>
+	
+	<target name="-unpack.features" if="pluginbuilder.is.server">
+		<property name="pluginbuilder.feature.urls" value="${pluginbuilder.feature.urls.default}"/>
+		<foreach list="${pluginbuilder.feature.urls}" param="feature.url" delimiter="," target="-unpack.feature" inheritall="true"/>
+	</target>
+	
+	<target name="-unpack.feature" depends="-set.archive.location">
+		<property name="tempunziplocation" value="${buildDirectory}/tmpunzip"/>
+		<delete dir="${tempunziplocation}" failonerror="false"/>
+		<mkdir dir="${tempunziplocation}"/>
+		<unzip src="${archive.location}" overwrite="true" dest="${tempunziplocation}"/>
+		<condition property="moveroot" value="${tempunziplocation}/eclipse" else="${tempunziplocation}">
+				<available file="${tempunziplocation}/eclipse" type="dir"/>
+		</condition>
+		<move todir="${eclipse.installation.dir}" includeemptydirs="true">
+			<fileset dir="${moveroot}" includes="**"/>
+		</move>
+	</target>
+			
+	<target name="-unpack.eclipse.ifnecessary" if="unpack.eclipse">
+		<antcall target="-get.archive"/>
+		<condition property="is.windows">
+		  <os family="windows"/>
+		</condition>
+		<antcall target="-unpack.eclipse.windows"/>
+		<antcall target="-unpack.eclipse.linux"/>
+		<antcall target="-get.features"/>
+		<antcall target="-unpack.features"/>
+	</target>
+	
+	<target name="-unpack.eclipse.windows" if="is.windows" depends="-set.eclipse.local.tar.server,-set.eclipse.local.tar.non.server">
+		<unzip src="${eclipse.local.tar}" overwrite="true" dest="${eclipse.installation.dir}/.."/>		
+	</target>
+	
+	<target name="-unpack.eclipse.linux" unless="is.windows" depends="-set.eclipse.local.tar.server,-set.eclipse.local.tar.non.server">
+		<untar src="${eclipse.local.tar}" overwrite="true" dest="${eclipse.installation.dir}/.." compression="gzip"/>		
+	</target>
+	
+	<target name="test">
+		<property name="buildDirectory" value="C:/Temp/tst"/>
+		<mkdir dir="${buildDirectory}"/>
+		<property name="eclipse.download.cache" value="C:/Temp/downloadcache"/>
+		<property name="pluginbuilder.is.server" value="true"/>
+		<property name="pluginbuilder.eclipse.url" value="http://mirror.yoxos-eclipse-distribution.de/eclipse.org/eclipse/downloads/drops/R-3.2.2-200702121330/eclipse-PDE-3.2.2.zip"/>
+		
+		<property name="eclipse.installation.dir" value="C:/Temp/eclipse_root/eclipse"/>
+		<delete dir="${eclipse.installation.dir}" failonerror="false"/>
+		<property name="pluginbuilder.feature.urls" value="http://self.pluginbuilder.org/0.2.0/org.pluginbuilder.feature-0.2.0.20070218PRD.zip,http://mirror.yoxos-eclipse-distribution.de/eclipse.org/eclipse/downloads/drops/R-3.2.2-200702121330/eclipse-examples-3.2.2.zip"/>
+		<antcall target="unpack.eclipse"/>
+	</target>
+	
+</project>
\ No newline at end of file

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build_shared.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build_shared.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/build_shared.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/maps/all.map
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/maps/all.map?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/maps/all.map (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/maps/all.map Thu Feb 17 20:22:56 2011
@@ -0,0 +1,6 @@
+feature@org.apache.easyant4e.feature=COPY,/home/jerome/tools/easyant/easyant4e.git,org.apache.easyant4e.feature
+plugin@org.apache.easyant=COPY,/home/jerome/tools/easyant/easyant4e.git,org.apache.easyant
+plugin@org.apache.easyant4e=COPY,/home/jerome/tools/easyant/easyant4e.git,org.apache.easyant4e
+feature@org.apache.ivyde.feature=COPY,/home/jerome/tools/easyant/ivyde.git,org.apache.ivyde.feature
+plugin@org.apache.ivyde.eclipse=COPY,/home/jerome/tools/easyant/ivyde.git,org.apache.ivyde.eclipse
+plugin@org.apache.ivy=COPY,/home/jerome/tools/easyant,ivy.git

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/pluginbuilder.config
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/pluginbuilder.config?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/pluginbuilder.config (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/pluginbuilder.config Thu Feb 17 20:22:56 2011
@@ -0,0 +1,10 @@
+#Mon Oct 19 21:52:24 GMT+01:00 2009
+autotestsuite.class.exclusions=.*All(Tests|PDE_Tests|_Tests|PDETests).*
+pluginbuilder.features=org.apache.easyant4e.feature
+pluginbuilder.is.svn=false
+autotestsuite.class.inclusions=.*
+pluginbuilder.is.runtests=false
+autotestsuite.plugin.inclusions=.*(test|tests)$
+pluginbuilder.is.cvs=false
+pluginbuilder.is.copy=true
+pluginbuilder.is.rcpbuild=false

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/releases/HEAD.properties
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/releases/HEAD.properties?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/releases/HEAD.properties (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/releases/HEAD.properties Thu Feb 17 20:22:56 2011
@@ -0,0 +1,6 @@
+#Written from Plug-in Builder Editor
+#Sat Oct 17 22:41:09 GMT+01:00 2009
+buildType=N
+version=1.0.0
+fetchTag=HEAD
+buildTypePresentation=

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/releases/HEAD.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.releng/releases/HEAD.properties
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.classpath
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.classpath?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.classpath (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.classpath Thu Feb 17 20:22:56 2011
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
+	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+	<classpathentry kind="src" path="src"/>
+	<classpathentry kind="src" path="datas"/>
+	<classpathentry kind="output" path="bin"/>
+</classpath>

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.project
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.project?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.project (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.project Thu Feb 17 20:22:56 2011
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>org.apache.easyant4e.tests</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.ManifestBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.SchemaBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.pde.PluginNature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.project
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.project
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.project
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.settings/org.eclipse.jdt.core.prefs
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.settings/org.eclipse.jdt.core.prefs?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.settings/org.eclipse.jdt.core.prefs (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/.settings/org.eclipse.jdt.core.prefs Thu Feb 17 20:22:56 2011
@@ -0,0 +1,7 @@
+#Wed Jun 17 21:58:50 GMT+01:00 2009
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
+org.eclipse.jdt.core.compiler.compliance=1.5
+org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
+org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
+org.eclipse.jdt.core.compiler.source=1.5

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/META-INF/MANIFEST.MF?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/META-INF/MANIFEST.MF (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/META-INF/MANIFEST.MF Thu Feb 17 20:22:56 2011
@@ -0,0 +1,20 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: Tests Plug-in
+Bundle-SymbolicName: org.apache.easyant4e.tests
+Bundle-Version: 1.0.0.qualifier
+Bundle-Activator: org.apache.easyant4e.tests.TestPlugin
+Require-Bundle: org.apache.easyant4e,
+ org.eclipse.ui,
+ org.eclipse.core.runtime,
+ org.junit4,
+ org.eclipse.core.resources,
+ org.eclipse.jdt.core,
+ org.eclipse.jdt.launching,
+ org.eclipse.ui.forms,
+ org.eclipse.jdt.ui,
+ org.eclipse.ui.ide,
+ org.eclipse.pde.core
+Bundle-ActivationPolicy: lazy
+Bundle-RequiredExecutionEnvironment: J2SE-1.5
+Import-Package: org.apache.easyant.core.report

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/build.properties
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/build.properties?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/build.properties (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/build.properties Thu Feb 17 20:22:56 2011
@@ -0,0 +1,4 @@
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+               .

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/build.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/build.properties
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/.classpath
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/.classpath?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/.classpath (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/.classpath Thu Feb 17 20:22:56 2011
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry excluding="/simplejavaproject/target" kind="src" output="target" path="src/main/java"/>
+	<classpathentry excluding="/simplejavaproject/target" kind="src" output="target" path="src/main/resources"/>
+	<classpathentry excluding="/simplejavaproject/target" kind="src" output="target" path="src/test/java"/>
+	<classpathentry excluding="/simplejavaproject/target" kind="src" output="target" path="src/test/resources"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+	<classpathentry kind="con" path="org.apache.ivyde.eclipse.cpcontainer.IVYDE_CONTAINER/module.ivy/*"/>
+	<classpathentry kind="output" path="target"/>
+</classpath>

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/.project
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/.project?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/.project (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/.project Thu Feb 17 20:22:56 2011
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>simplejavaproject</name>
+	<comment>simplejavaproject description</comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.apache.easyant4e.EasyAntBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.apache.easyant4e.EasyAntNature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/.project
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/.project
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/.project
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/module.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/module.ivy?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/module.ivy (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/module.ivy Thu Feb 17 20:22:56 2011
@@ -0,0 +1,26 @@
+<!--
+	Copyright 2008 the EasyAnt project
+	
+	See the NOTICE file distributed with this work for additional information 
+	regarding copyright ownership.
+	
+	Licensed under the Apache License, Version 2.0 (the "License");
+	you may not use this file except in compliance with the License.
+	You may obtain a copy of the License at
+	
+	http://www.apache.org/licenses/LICENSE-2.0
+	
+	Unless required by applicable law or agreed to in writing, software
+	distributed under the License is distributed on an "AS IS" BASIS,
+	WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+	See the License for the specific language governing permissions and
+	limitations under the License.  
+-->
+<ivy-module version="2.0" xmlns:ea="http://www.easyant.org"> 
+	<info organisation="org.apache.easyant" module="simplejavaproject" status="integration" >
+		<ea:build type="org.apache.easyant.buildtypes#build-std-java;0.2">
+			<ea:property name="run.main.classname" value="org.apache.easyant.example.Example"/>
+			<ea:plugin module="org.apache.easyant.plugins#run-java;0.1" as="run"/>
+       	</ea:build>
+	</info>
+</ivy-module>

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/module.ivy
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/module.ivy
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/datas/simplejavaproject/module.ivy
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/AbstractEasyAntTest.java
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/AbstractEasyAntTest.java?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/AbstractEasyAntTest.java (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/AbstractEasyAntTest.java Thu Feb 17 20:22:56 2011
@@ -0,0 +1,94 @@
+/* 
+ *  Copyright 2008-2009 the EasyAnt project
+ * 
+ *  See the NOTICE file distributed with this work for additional information
+ *  regarding copyright ownership. 
+ * 
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ * 
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ *  Unless required by applicable law or agreed to in writing, software 
+ *  distributed under the License is distributed on an "AS IS" BASIS, 
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and 
+ *  limitations under the License.
+ */
+package org.apache.easyant4e.tests;
+
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+
+import org.apache.easyant4e.Activator;
+import org.apache.easyant4e.EasyAntPlugin;
+import org.apache.easyant4e.services.EasyantCoreService;
+import org.apache.easyant4e.services.EasyantProjectService;
+import org.eclipse.core.resources.IFile;
+import org.eclipse.core.resources.IProject;
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.jdt.core.IJavaProject;
+import org.eclipse.jdt.ui.IPackagesViewPart;
+import org.eclipse.jdt.ui.JavaUI;
+import org.eclipse.jface.viewers.ISelection;
+import org.eclipse.jface.viewers.StructuredSelection;
+import org.eclipse.ui.IPerspectiveDescriptor;
+import org.eclipse.ui.ISelectionService;
+import org.eclipse.ui.PartInitException;
+import org.eclipse.ui.PlatformUI;
+import org.junit.After;
+import org.junit.Before;
+
+import com.google.inject.Inject;
+
+/**
+ * 
+ * @author <a href="mailto:jerome@benois.fr">Jerome Benois</a>
+ */
+public abstract class AbstractEasyAntTest {
+	protected IProject testProject;
+	protected IJavaProject testJavaProject;
+	
+	@Inject
+	EasyantCoreService coreService;
+	
+	@Inject
+	EasyantProjectService projectService;
+	
+	@Before
+	public void setUp() throws Exception {
+		EasyAntPlugin easyAntPlugin = Activator.getEasyAntPlugin();
+		assertNotNull(easyAntPlugin);
+		easyAntPlugin.injectMembers(this);
+		assertNotNull(coreService);
+		assertNotNull(projectService);
+		
+		//System.out.println("setUp");
+		String testProjectName = "TestProject";
+		this.testProject = EclipseProjectBuilder.createProject(testProjectName);
+	    assertNotNull(testProject);
+	    IFile testModuleDesc = EclipseProjectBuilder.createModuleDescriptorFile(testProject, "org.apache.easyant");
+	    assertNotNull(testModuleDesc);
+	    assertTrue(testModuleDesc.exists());
+	    
+	    String testJavaProjectName = "TestJavaProject";
+	    this.testJavaProject = EclipseProjectBuilder.createJavaProject(testJavaProjectName);
+	    assertNotNull(testProject);
+	    IFile testJavaModuleDesc = EclipseProjectBuilder.createModuleDescriptorFile(testJavaProject.getProject(), "org.apache.easyant");
+	    assertNotNull(testJavaModuleDesc);
+	    assertTrue(testJavaModuleDesc.exists());	   
+	}
+	
+	@After
+	public void tearDown() throws CoreException {
+		if(this.testProject!=null){
+			EclipseProjectBuilder.deleteProject(testProject);
+			this.testProject = null;
+		}
+		if(this.testJavaProject!=null){
+			EclipseProjectBuilder.deleteProject(testJavaProject.getProject());
+			this.testJavaProject = null;			
+		}
+	}
+}

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/AbstractEasyAntTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/AbstractEasyAntTest.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/AbstractEasyAntTest.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/EasyAntAllTests.java
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/EasyAntAllTests.java?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/EasyAntAllTests.java (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/EasyAntAllTests.java Thu Feb 17 20:22:56 2011
@@ -0,0 +1,39 @@
+/* 
+ *  Copyright 2008-2009 the EasyAnt project
+ * 
+ *  See the NOTICE file distributed with this work for additional information
+ *  regarding copyright ownership. 
+ * 
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ * 
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ *  Unless required by applicable law or agreed to in writing, software 
+ *  distributed under the License is distributed on an "AS IS" BASIS, 
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and 
+ *  limitations under the License.
+ */
+package org.apache.easyant4e.tests;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+import org.junit.runners.Suite.SuiteClasses;
+
+/**
+ * 
+ * @author <a href="mailto:jerome@benois.fr">Jerome Benois</a>
+ */
+@RunWith(Suite.class)
+@SuiteClasses(value = { 
+		ImportProjectTest.class,
+		StartupTest.class, 
+		EasyantCoreServiceTest.class,
+		EasyantProjectServiceTest.class	
+		
+})
+public class EasyAntAllTests {
+
+}

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/EasyAntAllTests.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/EasyAntAllTests.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/EasyAntAllTests.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/EasyantCoreServiceTest.java
URL: http://svn.apache.org/viewvc/incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/EasyantCoreServiceTest.java?rev=1071768&view=auto
==============================================================================
--- incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/EasyantCoreServiceTest.java (added)
+++ incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/EasyantCoreServiceTest.java Thu Feb 17 20:22:56 2011
@@ -0,0 +1,82 @@
+/* 
+ *  Copyright 2008-2009 the EasyAnt project
+ * 
+ *  See the NOTICE file distributed with this work for additional information
+ *  regarding copyright ownership. 
+ * 
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at
+ * 
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ *  Unless required by applicable law or agreed to in writing, software 
+ *  distributed under the License is distributed on an "AS IS" BASIS, 
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and 
+ *  limitations under the License.
+ */
+package org.apache.easyant4e.tests;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+
+import java.io.File;
+
+import org.apache.easyant4e.Activator;
+import org.apache.easyant4e.services.EasyantCoreService;
+import org.junit.Before;
+import org.junit.Test;
+
+/**
+ * 
+ * @author <a href="mailto:jerome@benois.fr">Jerome Benois</a>
+ */
+public class EasyantCoreServiceTest extends AbstractEasyAntTest {
+
+/*
+	@Test
+	public void testGetIvyInstance() {
+		Ivy ivy = coreService.getIvyInstance(testProject);
+		assertNotNull(ivy);
+	}
+*/
+
+	@Test
+	public void testGetPluginsRepositoryPath() {
+		String pluginsRepositoryPath = coreService.getPluginsRepositoryPath();
+		assertNotNull(pluginsRepositoryPath);
+		String pluginPath = System.getProperty("user.home") + "/.easyant/repository";
+		assertEquals(pluginPath, pluginsRepositoryPath);
+	}
+
+	@Test
+	public void testInstallPluginsRepository() {
+		String pluginsRepositoryPath = coreService.getPluginsRepositoryPath();
+		File pluginsRepositoryDir = new File(pluginsRepositoryPath);
+		assertTrue(deleteDirectory(pluginsRepositoryDir));
+		assertFalse(pluginsRepositoryDir.exists());
+		coreService.installPluginsRepository();
+		assertTrue(pluginsRepositoryDir.exists());
+	}
+
+	private boolean deleteDirectory(File path) {
+		boolean resultat = true;
+
+		if (path.exists()) {
+			File[] files = path.listFiles();
+			for (int i = 0; i < files.length; i++) {
+				if (files[i].isDirectory()) {
+					resultat &= deleteDirectory(files[i]);
+				} else {
+					resultat &= files[i].delete();
+				}
+			}
+		}
+		resultat &= path.delete();
+		return (resultat);
+	}
+
+}

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/EasyantCoreServiceTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/EasyantCoreServiceTest.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: incubator/easyant/easyant4e/trunk/org.apache.easyant4e.tests/src/org/apache/easyant4e/tests/EasyantCoreServiceTest.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain