From 1ddaf1646624c1b4d9ab69d3e592f20ac8625a7b Mon Sep 17 00:00:00 2001 From: orbiter Date: Mon, 14 Sep 2009 17:06:09 +0000 Subject: [PATCH] added generation of a yacycore.jar yacy library file: when a ant dist is envoked, the release is built using the new yacycore.jar without the class files in classes YaCy consists currently of two main parts: the YaCy core and the YaCy interface. This change will make it possible to use the YaCy core as part of other projects. git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@6311 6c8d7289-2bf4-0310-a012-ef5d649a1542 --- build.xml | 43 +++++++++---------------------------------- startYACY.bat | 1 - startYACY.sh | 1 - 3 files changed, 9 insertions(+), 36 deletions(-) diff --git a/build.xml b/build.xml index c76440fc5..e79e20373 100644 --- a/build.xml +++ b/build.xml @@ -156,8 +156,8 @@ - - + + @@ -187,7 +187,7 @@ - + @@ -196,7 +196,7 @@ - + - + - + @@ -226,7 +226,7 @@ - + - - - - - - - - + + @@ -618,7 +612,6 @@ - @@ -633,15 +626,6 @@ - - - - - - - - - @@ -839,15 +823,6 @@ - - - - - - - - - diff --git a/startYACY.bat b/startYACY.bat index 565987128..68b9bac69 100644 --- a/startYACY.bat +++ b/startYACY.bat @@ -10,7 +10,6 @@ If %1.==CPGEN. GoTo :CPGEN Rem Generating the proper classpath unsing loops and labels Set CLASSPATH=classes;htroot For %%X in (lib/*.jar) Do Call %0 CPGEN lib\%%X -For %%X in (libx/*.jar) Do Call %0 CPGEN libx\%%X REM Please change the "javastart" settings in the web-interface "Basic Configuration" -> "Advanced" set jmx= diff --git a/startYACY.sh b/startYACY.sh index 6678dda99..97345431d 100755 --- a/startYACY.sh +++ b/startYACY.sh @@ -169,7 +169,6 @@ fi # generating the proper classpath CLASSPATH="" for N in lib/*.jar; do CLASSPATH="$CLASSPATH$N:"; done -for N in libx/*.jar; do CLASSPATH="$CLASSPATH$N:"; done CLASSPATH="classes:.:htroot:$CLASSPATH" cmdline="$JAVA $JAVA_ARGS -Djava.awt.headless=true -classpath $CLASSPATH yacy";