diff options
author | Sven Gothel <[email protected]> | 2013-07-17 16:11:04 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-07-17 16:11:04 +0200 |
commit | 309776f16a898b10091cc705e0f31fe21db09f63 (patch) | |
tree | 2a6441d4f3dd9b3f24bc70f511e3e2218db86b79 | |
parent | b4fbbc98929c56b9f82815a50dacb02796d9d252 (diff) |
Javadoc: Use JogAmp Stylesheet / Colors ..v2.0.2
-rwxr-xr-x | make/build.xml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/make/build.xml b/make/build.xml index cc0b842..3c4ae31 100755 --- a/make/build.xml +++ b/make/build.xml @@ -696,11 +696,15 @@ destdir="${javadoc.joal.public.path}" windowtitle="JOAL API" encoding="UTF-8" source="${target.sourcelevel}" - maxmemory="${javac.memorymax}" > + maxmemory="${javac.memorymax}" + stylesheetfile="${gluegen.make.dir}/doc/javadoc/stylesheet.css"> <classpath refid="joal_all.classpath"/> <link offline="true" href="${javadoc.link}" packagelistLoc="${gluegen.root}/make/142-packages" /> <link offline="false" href="${gluegen.link}" /> </javadoc> + <copy todir="${javadoc.joal.public.path}/resources" overwrite="true"> + <fileset dir="${gluegen.make.dir}/doc/javadoc/resources" includes="*" /> + </copy> </target> <target name="javadoc.dev" depends="javadoc.init"> @@ -710,11 +714,15 @@ destdir="${javadoc.joal.dev.path}" windowtitle="JOAL API" encoding="UTF-8" source="${target.sourcelevel}" - maxmemory="${javac.memorymax}" > + maxmemory="${javac.memorymax}" + stylesheetfile="${gluegen.make.dir}/doc/javadoc/stylesheet.css"> <classpath refid="joal_all.classpath"/> <link offline="true" href="${javadoc.link}" packagelistLoc="${gluegen.root}/make/142-packages" /> <link offline="false" href="${gluegen.link}" /> </javadoc> + <copy todir="${javadoc.joal.dev.path}/resources" overwrite="true"> + <fileset dir="${gluegen.make.dir}/doc/javadoc/resources" includes="*" /> + </copy> </target> <target name="developer-src-zip" depends="init"> |