[go: up one dir, main page]

File: user.xml

package info (click to toggle)
asm3 3.3.2-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,332 kB
  • sloc: java: 37,188; xml: 1,841; makefile: 30; sh: 12
file content (40 lines) | stat: -rw-r--r-- 1,352 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<project name="asm" default="dist.jdoc">

  <property name="jdoc.name" value="user"/>
  <property name="jdoc.dir" value="${out.dist.jdoc}/${jdoc.name}"/>

  <target name="dist.jdoc">
    <uptodate property="jdoc.required" targetfile="${jdoc.dir}/index.html">
      <srcfiles dir="${src}" includes="**/*.java,**/*.html"/>
    </uptodate>
    <antcall target="dist.jdoc.${jdoc.name}"/>
  </target>

  <target name="dist.jdoc.user" unless="jdoc.required">
    <mkdir dir="${jdoc.dir}"/>
    <javadoc destdir="${jdoc.dir}"
             windowtitle="ASM ${product.version} Documentation"
             doctitle="ASM ${product.version} Documentation"
             use="true">

      <sourcepath path="${src}"/>
      <package name="org.objectweb.asm"/>
      <package name="org.objectweb.asm.attrs"/>
      <package name="org.objectweb.asm.commons"/>
      <package name="org.objectweb.asm.signature"/>
      <package name="org.objectweb.asm.tree"/>
      <package name="org.objectweb.asm.tree.analysis"/>
      <package name="org.objectweb.asm.util"/>
      <package name="org.objectweb.asm.util.attrs"/>
      <package name="org.objectweb.asm.xml"/>

      <link href="${jdk.url}" offline="true" packagelistLoc="${jdoc}"/>

    </javadoc>

    <copy todir="${jdoc.dir}">
      <fileset dir="${src}" includes="**/*.dtd"/>
    </copy>
  </target>

</project>