mirror of https://github.com/apache/lucene.git
- cleaning up some more files for the test target
- trying to generate the docs with ant installed and not the script and am having no luck. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149581 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4fc06ae583
commit
f62bf88dbc
11
build.xml
11
build.xml
|
@ -207,10 +207,11 @@
|
||||||
<!-- ================================================================== -->
|
<!-- ================================================================== -->
|
||||||
<!-- -->
|
<!-- -->
|
||||||
<!-- ================================================================== -->
|
<!-- ================================================================== -->
|
||||||
<target name="docs-prepare">
|
<target name="docs-prepare">
|
||||||
<available
|
<available
|
||||||
classname="org.apache.velocity.anakia.AnakiaTask"
|
classname="org.apache.velocity.anakia.AnakiaTask"
|
||||||
property="AnakiaTask.present"
|
property="AnakiaTask.present"
|
||||||
|
classpathref="classpath"
|
||||||
/>
|
/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
@ -222,7 +223,13 @@
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="docs" depends="prepare-error" if="AnakiaTask.present">
|
<target name="docs" depends="prepare-error" if="AnakiaTask.present">
|
||||||
<taskdef name="anakia" classname="org.apache.velocity.anakia.AnakiaTask"/>
|
<taskdef
|
||||||
|
name="anakia"
|
||||||
|
classname="org.apache.velocity.anakia.AnakiaTask"
|
||||||
|
>
|
||||||
|
<classpath refid="classpath"/>
|
||||||
|
</taskdef>
|
||||||
|
|
||||||
<anakia
|
<anakia
|
||||||
basedir="${docs.src}"
|
basedir="${docs.src}"
|
||||||
destdir="${docs.dest}/"
|
destdir="${docs.dest}/"
|
||||||
|
|
Loading…
Reference in New Issue