Skip to content
Snippets Groups Projects
Commit 3e60ccda authored by Jens-Michael Hoffmann's avatar Jens-Michael Hoffmann Committed by Karsten Loesing
Browse files

Fix build errors on Debian systems.

The local lib directory is not used anymore and respective references
were removed. The java dependencies are now specified in the build.xml
and taken from their installed locations.

In addition to git, openjdk-6-jdk and ant the following java packages
have to be installed:
 - libcommons-codec-java
 - libcommons-compress-java
 - junit4

Minor tweaks by Karsten Loesing.
parent 008781b7
No related branches found
No related tags found
No related merge requests found
......@@ -2,11 +2,12 @@
<property name="sources" value="src"/>
<property name="classes" value="classes"/>
<property name="tests" value="test"/>
<property name="libs" value="lib"/>
<path id="classpath">
<pathelement path="${classes}"/>
<fileset dir="${libs}">
<include name="*.jar"/>
<fileset dir="/usr/share/java">
<include name="commons-codec.jar"/>
<include name="commons-compress.jar"/>
<include name="junit4.jar"/>
</fileset>
</path>
<target name="init">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment