*) Fixed broken compile process.

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3650 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
rramthun 18 years ago
parent d6811ac243
commit e12e934ade

@ -8,6 +8,7 @@
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="lib/commons-collections.jar"/>
<classpathentry kind="lib" path="lib/commons-pool.jar"/>
<classpathentry kind="lib" path="lib/tar.jar"/>
<classpathentry kind="lib" path="libx/axis-ant.jar"/>
<classpathentry kind="lib" path="libx/axis.jar"/>
<classpathentry kind="lib" path="libx/bzip2.jar"/>
@ -28,7 +29,6 @@
<classpathentry kind="lib" path="libx/PDFBox-0.7.2.jar"/>
<classpathentry kind="lib" path="libx/saaj.jar"/>
<classpathentry kind="lib" path="libx/sbbi-upnplib-1.0.3.jar"/>
<classpathentry kind="lib" path="libx/tar.jar"/>
<classpathentry kind="lib" path="libx/tm-extractors-0.4.jar"/>
<classpathentry kind="lib" path="libx/wsdl4j.jar"/>
<classpathentry kind="lib" path="libx/xerces.jar"/>

@ -206,6 +206,7 @@
<!-- libs needed for the yacy thread/object-pools -->
<pathelement location="${lib}/commons-collections.jar" />
<pathelement location="${lib}/commons-pool.jar" />
<pathelement location="${lib}/tar.jar" />
</path>
<!-- compiling yacy.java -->
@ -250,7 +251,7 @@
<!-- libs needed for the yacy thread/object-pools -->
<pathelement location="${lib}/commons-collections.jar" />
<pathelement location="${lib}/commons-pool.jar" />
<pathelement location="${lib}/tar.jar" />
<!-- userspecific libs -->
<pathelement location="${htdocsWWW}/lib/*.jar" />
<pathelement location="${htdocsWWW}/" />
@ -643,6 +644,7 @@
<pathelement location="${htroot}"/>
<pathelement location="${lib}/commons-collections.jar" />
<pathelement location="${lib}/commons-pool.jar" />
<pathelement location="${lib}/tar.jar" />
<pathelement location="${libx}" />
<fileset dir="${libx}" includes="**/*.jar" />
</classpath>
@ -663,6 +665,7 @@
<pathelement location="${htroot}"/>
<pathelement location="${lib}/commons-collections.jar" />
<pathelement location="${lib}/commons-pool.jar" />
<pathelement location="${lib}/tar.jar" />
<pathelement location="${libx}" />
<fileset dir="${libx}" includes="**/*.jar" />
</classpath>
@ -678,6 +681,7 @@
<pathelement location="${htroot}"/>
<pathelement location="${lib}/commons-collections.jar" />
<pathelement location="${lib}/commons-pool.jar" />
<pathelement location="${lib}/tar.jar" />
<pathelement location="${libx}" />
<fileset dir="${libx}" includes="**/*.jar" />
</classpath>
@ -697,6 +701,7 @@
<pathelement location="${htroot}"/>
<pathelement location="${lib}/commons-collections.jar" />
<pathelement location="${lib}/commons-pool.jar" />
<pathelement location="${lib}/tar.jar" />
<pathelement location="${libx}" />
<fileset dir="${libx}" includes="**/*.jar" />
</classpath>

@ -15,7 +15,7 @@
<classpath>
<pathelement location="${build}" />
<pathelement location="${libx}/tar.jar" />
<pathelement location="${lib}/tar.jar" />
</classpath>
</javac>
</target>
@ -23,7 +23,7 @@
<target name="zip" depends="compile">
<tar destfile="${parserArchive}" compression="gzip">
<tarfileset dir="${libx}"
<tarfileset dir="${lib}"
includes="tar.jar"
prefix="${releaseFileParentDir}/libx/"
dirmode="755" mode="644"/>
@ -38,7 +38,7 @@
<target name="copy" depends="compile">
<copy todir="${release}/libx/">
<fileset dir="${libx}" includes="tar.jar"/>
<fileset dir="${lib}" includes="tar.jar"/>
</copy>
<copy todir="${release}/source/de/anomic/plasma/parser/${parserShortName}">
<fileset dir="${src}/de/anomic/plasma/parser/${parserShortName}" includes="**/*"/>

@ -85,7 +85,7 @@ public class tarParser extends AbstractParser implements Parser {
* @see Parser#getLibxDependences()
*/
private static final String[] LIBX_DEPENDENCIES = new String[] {
"tar.jar"
// "tar.jar"
};
public tarParser() {

Loading…
Cancel
Save