added target that compiles only the cora package

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7423 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
orbiter 14 years ago
parent 733903f2c9
commit 19711ff6d6

@ -239,6 +239,21 @@
</target>
<target name="compile-cora" depends="init" description="compile YaCy cora component">
<!-- compile the cora sources -->
<javac srcdir="${src}/net/yacy/cora/" destdir="${build}/"
debug="true" debuglevel="lines,vars,source"
source="${javacSource}" target="${javacTarget}">
<classpath refid="project.class.path" />
<compilerarg value="-Xlint"/>
</javac>
<!-- make yacy-cora.jar -->
<jar destfile="${lib}/yacy-cora.jar" includes="**/net/yacy/cora/**" basedir="${build}/"></jar>
</target>
<target name="compile" depends="compile-core" description="compile YaCy core and YaCy servlets">
<!-- defining the classpath that should be used for compiling -->
<path id="project.class.path">

Loading…
Cancel
Save