* [gentoo-commits] gentoo-x86 commit in dev-java/htmlparser/files: build.xml
@ 2012-02-23 20:15 Krzysztof Pawlik (nelchael)
0 siblings, 0 replies; only message in thread
From: Krzysztof Pawlik (nelchael) @ 2012-02-23 20:15 UTC (permalink / raw
To: gentoo-commits
nelchael 12/02/23 20:15:28
Added: build.xml
Log:
Initial version of htmlparser: Implementation of the HTML5 parsing algorithm in Java.
(Portage version: 2.1.10.47/cvs/Linux x86_64)
Revision Changes Path
1.1 dev-java/htmlparser/files/build.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/htmlparser/files/build.xml?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-java/htmlparser/files/build.xml?rev=1.1&content-type=text/plain
Index: build.xml
===================================================================
<?xml version="1.0"?>
<project name="htmlparser" default="jar">
<path id="build.classpath">
<fileset dir="lib/">
<include name="*.jar"/>
</fileset>
</path>
<target name="compile">
<mkdir dir="build"/>
<javac srcdir="src" destdir="build" classpathref="build.classpath"/>
</target>
<target name="jar" depends="compile">
<jar destfile="htmlparser.jar" basedir="build"/>
</target>
<target name="javadoc" depends="compile">
<mkdir dir="docs"/>
<javadoc sourcepath="src" destdir="docs" classpathref="build.classpath"/>
</target>
</project>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2012-02-23 20:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-23 20:15 [gentoo-commits] gentoo-x86 commit in dev-java/htmlparser/files: build.xml Krzysztof Pawlik (nelchael)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox