Lines 196-222
Link Here
|
196 |
|
196 |
|
197 |
<target name="javadoc" depends="library"> |
197 |
<target name="javadoc" depends="library"> |
198 |
<mkdir dir="build/javadoc"/> |
198 |
<mkdir dir="build/javadoc"/> |
199 |
<javadoc destdir="build/javadoc" source="1.5" failonerror="yes" |
199 |
<javadoc destdir="build/javadoc" source="1.5" failonerror="yes"> |
200 |
overview="overview.html"> |
|
|
201 |
|
200 |
|
202 |
<classpath> |
|
|
203 |
<fileset dir="lib/integration"> |
204 |
<include name="*.jar"/> |
205 |
</fileset> |
206 |
</classpath> |
207 |
|
208 |
<packageset dir="hamcrest-core/src/main/java"/> |
209 |
<packageset dir="hamcrest-library/src/main/java" excludes="org/hamcrest/internal"/> |
210 |
<packageset dir="hamcrest-integration/src/main/java"/> |
201 |
<packageset dir="hamcrest-integration/src/main/java"/> |
211 |
<packageset dir="build/generated-code"/> |
|
|
212 |
|
202 |
|
213 |
<group title="Hamcrest API and Utility Classes" packages="org.hamcrest"/> |
203 |
<group title="Hamcrest API and Utility Classes" packages="org.hamcrest"/> |
214 |
<group title="Matcher Library" packages="org.hamcrest.*"/> |
|
|
215 |
<group title="Integration" packages="org.hamcrest.integration, org.hamcrest.integration.*"/> |
204 |
<group title="Integration" packages="org.hamcrest.integration, org.hamcrest.integration.*"/> |
216 |
|
205 |
|
217 |
<link offline="false" href="http://java.sun.com/j2se/1.5.0/docs/api/"/> |
206 |
<link offline="false" href="http://java.sun.com/j2se/1.5.0/docs/api/"/> |
218 |
<link offline="false" href="http://www.junit.org/junit/javadoc/3.8.1/"/> |
|
|
219 |
<link offline="false" href="http://junit.sourceforge.net/javadoc_40/"/> |
220 |
</javadoc> |
207 |
</javadoc> |
221 |
</target> |
208 |
</target> |
222 |
|
209 |
|