- ant task for javadoc added
- some javadoc changes - package descriptions added git-svn-id: https://svn.code.sf.net/p/libusbjava/code/trunk@160 94ad28fe-ef68-46b1-9651-e7ae4fcf1c4c
This commit is contained in:
21
java/build.xml
Normal file
21
java/build.xml
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project name="ch.ntb.usb" basedir=".">
|
||||
<description>
|
||||
Ant tasks for creating the javadoc (ch.ntb.usb)
|
||||
</description>
|
||||
|
||||
<!-- javadoc properties -->
|
||||
<!--
|
||||
<property name="javadoc.destination" value="doc" />
|
||||
-->
|
||||
<property name="javadoc.destination" value="W:\inf\infoportalExternalDocs\projects\libusbWinJava\doc" />
|
||||
|
||||
<!-- build javadoc -->
|
||||
<target name="javadoc">
|
||||
<echo message="creating javadoc (\\www-server\web must be mapped to W:)" />
|
||||
<javadoc destdir="${javadoc.destination}">
|
||||
<fileset dir="src" defaultexcludes="yes">
|
||||
</fileset>
|
||||
</javadoc>
|
||||
</target>
|
||||
</project>
|
||||
Reference in New Issue
Block a user