blob: ebc19fcc3ebe49479b820ef9cc59c1e5abaf8555 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
--- build.xml.orig 2005-06-11 11:49:00.000000000 +0200
+++ build.xml 2005-06-11 11:51:40.000000000 +0200
@@ -64,9 +64,6 @@
<!-- Set the properties for library directories -->
<property name="library.directory" value="lib" />
- <taskdef name="jarbundler"
- classpath="${library.directory}/jarbundler-1.4.jar"
- classname="com.loomcom.ant.tasks.jarbundler.JarBundler" />
@@ -85,12 +82,9 @@
<java classname="net.sf.jabref.JabRef" fork="true">
<classpath>
<pathelement location="${build.lib}/jabref.jar"/>
- <pathelement location="${library.directory}/commons-httpclient-2.0.jar" />
- <pathelement location="${library.directory}/commons-logging.jar" />
- <pathelement location="${library.directory}/antlr.jar" />
- <pathelement location="${library.directory}/looks-1.2.2.jar" />
- <pathelement location="${library.directory}/forms-1.0.4.jar" />
- <pathelement location="${library.directory}/spin.jar" />
+ <fileset dir="${library.directory}">
+ <include name="*.jar" />
+ </fileset>
</classpath>
</java>
</target>
@@ -105,12 +99,9 @@
<exclude name="tests/**"/>
<classpath>
<pathelement path="${build.classes}" />
- <pathelement location="${library.directory}/commons-httpclient-2.0.jar" />
- <pathelement location="${library.directory}/commons-logging.jar" />
- <pathelement location="${library.directory}/antlr.jar" />
- <pathelement location="${library.directory}/looks-1.2.2.jar" />
- <pathelement location="${library.directory}/forms-1.0.4.jar" />
- <pathelement location="${library.directory}/spin.jar" />
+ <fileset dir="${library.directory}">
+ <include name="*.jar" />
+ </fileset>
</classpath>
</javac>
</target>
@@ -238,7 +229,8 @@
</target>
<!-- Unpacks jar needed jar files from lib directory into temp directory. -->
- <target name="unjarlib" description="Unpacks jars from library">
+
+ <target name="unjarlib" description="Unpacks jars from library">
<mkdir dir="${build.tmp}"/>
<unjar src="${library.directory}/commons-httpclient-2.0.jar" dest="${build.tmp}" />
<unjar src="${library.directory}/commons-logging.jar" dest="${build.tmp}" />
|