<?xml version="1.0" encoding="UTF-8"?>
<!--
  ANT Buildfile
 
  Copyright 2014-2018 IS2T. All rights reserved.
  IS2T PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
    	
-->
<project name="schedcontrol-init">

	<import file="${scripts.dir}/extension-init.xml" />
	
	<!-- Add SchedControl in the classpath, even if not touched by the application -->
	<target name="init/schedcontrol" extensionOf="init/execution">
		<fail unless="platform.dir"/>
		<augment id="init.application.classpath">
			<fileset dir="${platform.dir}/javaLibs" includes="schedcontrol-*.jar" />
		</augment>
		
		<augment id="init.requires">
			<string value="com.is2t.schedcontrol.ScheduleController"/>
		</augment>
	</target>
	
</project>