summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorguest <guest@f059d3a0-6783-47b7-97ff-1fe0bbf25129>2008-09-24 21:58:16 +0000
committerguest <guest@f059d3a0-6783-47b7-97ff-1fe0bbf25129>2008-09-24 21:58:16 +0000
commit1124d590a9db28e5a4088f8e84557469e7ee4bb2 (patch)
treea61b20ed778ada22c475462587757098b098feab /build.xml
parentab841adc06acd2a6ff161ea866579674ce5ff99e (diff)
it's now possible to make a search request in the client, then the pgsqlinput plugin gets proper (incomplete) results out of the database, then everything crashes on the way back, cause the search result isn't yet set correctly
git-svn-id: http://manut.eu/svn/yalp/trunk@6 f059d3a0-6783-47b7-97ff-1fe0bbf25129
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/build.xml b/build.xml
index 149a99f..e92dd67 100644
--- a/build.xml
+++ b/build.xml
@@ -23,7 +23,7 @@
<property name="build" value="build/"/>
<property name="lib" value="lib/"/>
- <property name="serverLibs" value="lib/log4j-1.2.15.jar"/>
+ <property name="log4jLibs" value="lib/log4j-1.2.15.jar"/>
<property name="vlctelnetLibs" value="lib/commons-net-1.4.1.jar"/>
<property name="swtLibs" value="lib/swt.jar"/>
<property name="dbLibs" value="lib/postgresql-8.1-404.jdbc3.jar"/>
@@ -59,7 +59,7 @@
<manifest>
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Main-Class" value="YalpServer.YalpServer"/>
- <attribute name="Class-Path" value="${serverLibs}"/>
+ <attribute name="Class-Path" value="${log4jLibs}"/>
</manifest>
</jar>
</target>
@@ -99,7 +99,7 @@
<manifest>
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Main-Class" value="YalpInputs.YalpPGSqlInput.YalpPGSqlInput"/>
- <attribute name="Class-Path" value="${dbLibs}"/>
+ <attribute name="Class-Path" value="${dbLibs} ${log4jLibs}"/>
</manifest>
</jar>
</target>