Skip to content

Commit

Permalink
htmlparser javadoc: exclude xom, only build *.java
Browse files Browse the repository at this point in the history
  • Loading branch information
sideshowbarker committed Jun 30, 2020
1 parent a7491a5 commit 3ac37f2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build/.ant/build-htmlparser.xml
@@ -1,5 +1,5 @@
<!--
Copyright (c) 2015-2019 Mozilla Foundation
Copyright (c) 2015-2020 Mozilla Foundation
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
Expand Down Expand Up @@ -28,7 +28,10 @@ DEALINGS IN THE SOFTWARE.
<property name="htmlparser-bundle-jar" value="${htmlparser-base}-bundle.jar" />
<target name="htmlparser-javadoc-jar">
<javadoc destdir="${javadoc-dir}" additionalparam="-html5 -Xdoclint:none">
<fileset dir="${htmlparser-src}"/>
<fileset dir="${htmlparser-src}">
<include name="**/*.java"/>
<exclude name="nu/validator/htmlparser/xom/**"/>
</fileset>
</javadoc>
<jar destfile="${htmlparser-javadoc-jar}">
<fileset dir="${javadoc-dir}" />
Expand Down

0 comments on commit 3ac37f2

Please sign in to comment.