Browse Source

Add target to test generation of xdocs for types

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@271776 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
33079e1f72
1 changed files with 10 additions and 3 deletions
  1. +10
    -3
      proposal/myrmidon/build.xml

+ 10
- 3
proposal/myrmidon/build.xml View File

@@ -342,7 +342,7 @@ Legal:
<include name="org/apache/aut/**" />
<include name="org/apache/tools/**" />
</patternset>
<patternset id="myrmidon-container.include">
<include name="org/apache/myrmidon/components/**" />
<include name="org/apache/myrmidon/frontends/*" />
@@ -389,6 +389,13 @@ Legal:

</target>

<target name="test-xdocs" depends="antlib-descriptors" description="Generate documentation for antlibs">
<!-- start to test xdocs generation -->
<ant antfile="antlib.xml" target="antlib-docs">
<property name="antlib.name" value="core"/>
</ant>
</target>

<!-- Package the jar files -->
<target name="jars" depends="antlib-descriptors">

@@ -544,7 +551,7 @@ Legal:
</target>

<!-- Creates the distribution -->
<target name="dist-lite"
<target name="dist-lite"
depends="jars"
description="Generates a minimal working distribution.">

@@ -588,7 +595,7 @@ Legal:

</target>

<target name="dist-extralite"
<target name="dist-extralite"
description="A faster version of dist-lite (no XDoclet).">
<property name="antlib-descriptors.omit" value="true"/>
<antcall target="dist-lite"/>


Loading…
Cancel
Save