Skip to content

Commit

Permalink
Added "stop" target to stop yacy again from within Eclipse
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@538 6c8d7289-2bf4-0310-a012-ef5d649a1542
  • Loading branch information
goligo committed Aug 14, 2005
1 parent ea780a7 commit 8e2a605
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions build.xml
Expand Up @@ -468,6 +468,22 @@
</java>
</target>

<!-- stop YaCy (needed for Eclipse) -->
<target name="stop" description="stop YaCy">
<java classname="yacy" fork="yes">
<classpath>
<pathelement location="${build}"/>
<pathelement location="${htroot}"/>
<pathelement location="${lib}/commons-collections.jar" />
<pathelement location="${lib}/commons-pool-1.2.jar" />
<pathelement location="${libx}" />
<fileset dir="${libx}" includes="**/*.jar" />
</classpath>
<arg line="-stop"/>
</java>
</target>


<!-- create the html-documentation from javadoc -->
<target name="create-doc" description="Create the javadoc-HTML-Pages">
<javadoc destdir="doc/api" version="no" use="yes" encoding="iso-8859-1" windowtitle="YaCy API Documentation">
Expand Down

0 comments on commit 8e2a605

Please sign in to comment.