Revision 516
Added by Matt Jones about 24 years ago
build.xml | ||
---|---|---|
39 | 39 |
<property name="build.dir" value="./build"/> |
40 | 40 |
<property name="build.src" value="${build.dir}/src"/> |
41 | 41 |
<property name="build.dest" value="${build.dir}/classes"/> |
42 |
<property name="build.docs" value="${build.dir}/docs/html"/>
|
|
42 |
<property name="build.docs" value="${build.dir}/docs"/> |
|
43 | 43 |
<property name="build.samples" value="${build.dir}/samples"/> |
44 | 44 |
<property name="build.tests" value="${build.dir}/tests"/> |
45 | 45 |
<property name="build.data" value="${build.dir}/data"/> |
... | ... | |
72 | 72 |
<mkdir dir="${build.dir}"/> |
73 | 73 |
<mkdir dir="${build.src}"/> |
74 | 74 |
<mkdir dir="${build.dest}"/> |
75 |
<mkdir dir="${build.javadocs}"/> |
|
75 | 76 |
|
76 | 77 |
<copydir src="${srcdir}" |
77 | 78 |
dest="${build.src}" |
... | ... | |
128 | 129 |
<deltree dir="${build.dir}" /> |
129 | 130 |
</target> |
130 | 131 |
|
131 |
<target name="jdoc" depends="init">
|
|
132 |
<target name="jdoc" depends="prepare">
|
|
132 | 133 |
<javadoc packagenames="edu.ucsb.nceas.metacat" |
133 |
sourcepath="src"
|
|
134 |
destdir="docs"
|
|
134 |
sourcepath="${build.src}"
|
|
135 |
destdir="${build.javadocs}"
|
|
135 | 136 |
author="true" |
136 | 137 |
version="true" |
137 | 138 |
use="true" |
Also available in: Unified diff
Changed target of the javadoc builds to the build/docs/apiDocs directory
so that we no loger version track the javadoc html files -- they changes
too much between each of the times we would generate them. Also, removed
the old javadoc documentation that was found in the "docs" subdirectory.