donaldp 01/06/12 06:35:31
Modified: proposal/myrmidon/src/make sample.ant
Log:
Change extention of ant libraries to "atl" for Ant Type Library. (more
representative of content than .tsk).
Revision Changes Path
1.7 +6 -3 jakarta-ant/proposal/myrmidon/src/make/sample.ant
Index: sample.ant
===================================================================
RCS file: /home/cvs/jakarta-ant/proposal/myrmidon/src/make/sample.ant,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- sample.ant 2001/06/10 12:57:32 1.6
+++ sample.ant 2001/06/12 13:35:31 1.7
@@ -16,6 +16,9 @@
<project name="MySample" default="main" basedir=".">
+ <projectref name="prim" location="primitive-tests.ant" />
+ <import library="core.atl" />
+
<property name="year" value="2000"/>
<target name="main" depends="typedef-test, converterdef-test,
datatype-test, namespace-test" />
@@ -23,7 +26,7 @@
<target name="all" depends="property-test, typedef-test,
converterdef-test, ant-call-test, datatype-test, namespace-test" />
<!--
- <register-tasklib lib="../../dist/lib/core.tsk" />
+ <register-tasklib lib="../../dist/lib/core.atl" />
-->
<target name="property-test">
@@ -37,7 +40,7 @@
<typedef name="echo2"
type="task"
classname="org.apache.ant.modules.basic.Echo"
- lib="../../dist/lib/core.tsk" />
+ lib="../../dist/lib/core.atl" />
<echo2 message="Luke to Echo base. Can you hear me?"/>
</target>
@@ -46,7 +49,7 @@
<converterdef
classname="org.apache.ant.modules.basic.StringToClassConverter"
source-type="java.lang.String"
destination-type="java.lang.Class"
- lib="../../dist/lib/core.tsk" />
+ lib="../../dist/lib/core.atl" />
</target>
<target name="ant-call-test">