<?xml version="1.0" encoding="UTF-8"?>
<!--
  	ANT
 
  	Copyright 2013-2014 IS2T. All rights reserved.
	Modification and distribution is permitted under certain conditions.
  	IS2T PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.

-->
<project name="edcInitS3">

	<dirname property="ant.dir.edcInitS3" file="${ant.file.edcInitS3}"/>
	<import file="${ant.dir.edcInitS3}/../extension-init.xml" />
	
	<!-- Add the EDC in the S3 bootclasspath -->
	<target name="init/edc/s3" extensionOf="init/execution" if="onS3">
		<fail unless="s3.libs.dir"/>
		<augment id="s3.bootclasspath.path">
			<fileset dir="${s3.libs.dir}" includes="edc-*.jar"/>
		</augment>
	</target>
	
</project>