blob: 2e4a43a039e3cc2856a8a90b1b40a2f8d2a6fcc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
--- build.xml.orig 2006-10-17 22:25:57.000000000 +0200
+++ build.xml 2006-10-17 22:27:34.000000000 +0200
@@ -21,26 +21,26 @@
<property name="libreadline-java" value="libreadline-java-0.8.0.jar"/>
<path id="compile.classpath">
- <fileset dir="${lib}">
- <include name="${libreadline-java}"/>
- <include name="${commons-cli}"/>
- </fileset>
+ <fileset dir="${lib}" includes="**/*.jar"/>
</path>
<path id="run.classpath">
<path refid="compile.classpath" />
<pathelement path="${classes}" />
</path>
-
+
+ <!--
<taskdef name="ant-server" classname="net.sweetohm.ant.server.ServerTask">
<classpath>
<pathelement location="${lib}/build/sat-0.7.jar" />
</classpath>
</taskdef>
+
<target name="server">
<ant-server/>
</target>
+ -->
<target name="prepare">
<tstamp>
|