Skip to content

Commit

Permalink
Updating javadoc tag in build.xml for ant
Browse files Browse the repository at this point in the history
  • Loading branch information
shlomi_h committed Nov 4, 2015
1 parent 94254cf commit 3e04cb6
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,24 +58,27 @@
<copy file="library.properties" tofile="dist/tmp/cassette/library.properties" />

<!-- create the java reference of the library -->
<!--
<mkdir dir="dist/tmp/casette/reference" />
<mkdir dir="reference" />
<javadoc bottom="Cassette"
classpath="/Applications/Processing.app/Contents/Java/core/library;bin"
destdir="dist/tmp/cassette/reference"
destdir="reference"
verbose="false"
stylesheetfile="resources/stylesheet.css"
doctitle="Javadocs: Cassette"
public="true" version="false"
windowtitle="Javadocs: Cassette">
<link href="http://java.sun.com/javase/6/docs/api/" />
<link href="https://github.com/shlomihod/cassette" />
<taglet name="ExampleTaglet" path="resources/code" />
<fileset dir="dist/tmp/Cassette/src" defaultexcludes="yes">
<taglet name="ExampleTaglet" path="examples" />
<fileset dir="src" defaultexcludes="yes">
<include name="**/*"/>
</fileset>
</javadoc> -->

</javadoc>

<copy todir="dist/tmp/cassette/reference">
<fileset dir="reference" />
</copy>

<!-- create zip package -->
<delete file="dist/cassette.zip"/>
<zip destfile="dist/cassette.zip"
Expand Down

0 comments on commit 3e04cb6

Please sign in to comment.