[asterisk-scf-commits] asterisk-scf/integration/slice.git branch "master" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Thu Nov 11 15:51:11 CST 2010
branch "master" has been updated
via 1ffd330e5c4a16563471982989211ff79df44092 (commit)
from fb316ec83774d5a5591d61db9fa8d22712581ce1 (commit)
Summary of changes:
build.xml | 14 +++++++++++++-
1 files changed, 13 insertions(+), 1 deletions(-)
- Log -----------------------------------------------------------------
commit 1ffd330e5c4a16563471982989211ff79df44092
Author: David M. Lee <dlee at digium.com>
Date: Thu Nov 11 15:47:53 2010 -0600
Exclude files from Javadoc that add no real value.
diff --git a/build.xml b/build.xml
index ee22a0f..7ceeac9 100644
--- a/build.xml
+++ b/build.xml
@@ -68,12 +68,24 @@
<target name="doc" depends="generate-sources"
description="Generates javadocs for generated .java files">
+ <delete dir="${javadoc-dir}"/>
<mkdir dir="${javadoc-dir}"/>
- <javadoc sourcepath="${slice2java-dir}" destdir="${javadoc-dir}" use="true"
+ <javadoc destdir="${javadoc-dir}" use="true"
verbose="false">
<classpath>
<pathelement location="${env.ICE_HOME}/lib/Ice.jar"/>
</classpath>
+ <fileset dir="${slice2java-dir}">
+ <exclude name="**/*Holder.java"/>
+ <exclude name="**/*Helper.java"/>
+ <exclude name="**/_*Del.java"/>
+ <exclude name="**/_*Operations.java"/>
+ <exclude name="**/_*OperationsNC.java"/>
+ <exclude name="**/_*DelD.java"/>
+ <exclude name="**/_*DelM.java"/>
+ <exclude name="**/Callback_*.java"/>
+ <include name="**/*.java"/>
+ </fileset>
</javadoc>
</target>
-----------------------------------------------------------------------
--
asterisk-scf/integration/slice.git
More information about the asterisk-scf-commits
mailing list