diff options
author | Phil Burk <[email protected]> | 2019-03-24 17:34:33 -0700 |
---|---|---|
committer | Phil Burk <[email protected]> | 2020-07-02 07:12:21 -0700 |
commit | ae8aa40c8a3d432ac55deebfa006107adfaaaef3 (patch) | |
tree | e4c128a4aa824009b149df2e39903fb529116c23 /build.xml | |
parent | 0eb49ab0342fd0fd0660a845141dbc78508e9cd2 (diff) |
jsyn docs: various small improvements
Update build.xml to use newer versions of javadoc
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -45,7 +45,12 @@ <!-- Generate javadocs for current project into ${doc.dir} --> <target name="doc" depends="init" description="generate documentation"> - <javadoc sourcepath="${src.dir}" destdir="${doc.dir}"/> + <javadoc + sourcepath="${src.dir}" + destdir="${doc.dir}" + packagenames="com.jsyn.*" + excludepackagenames="com.portaudio,com.jsyn.devices.jportaudio" + /> <echo message = "=================================================================" /> <echo message = "Javadocs have been generated and placed in the ${doc.dir} folder!" /> <echo message = "=================================================================" /> |