DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=34455>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=34455

           Summary: doc-files dir is not recognized
           Product: Ant
           Version: 1.6.3beta1
          Platform: HP
        OS/Version: All
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: Core tasks
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


Javadoc provides the possible to use a doc-files directory in the package-path 
to include any miscellaneous files for using the files in the package.html.

If I execute following line the doc-files dir is created as expected.
javadoc -d <doc-target-dir> -subpackages de -docfilessubdirs -sourcepath <src-
dir>

But the Ant-Version don't create the doc-files dir:

...
<!-- Properties-Def-Section -->
...

<target name="javadoc">

    <delete dir="${javadoc.target.dir}" />
    <mkdir dir="${javadoc.target.dir}" />

    <javadoc 
      destdir="${javadoc.target.dir}"
      author="true"
      version="true"
      use="true"
      windowtitle="PRG API"
      useexternalfile="yes"
      classpathref="javadoc.class.path"
      maxmemory="512M"
      includenosourcepackages="true">

      <fileset dir="${source.dir}">
        <include name="**/*.java"/>
      </fileset>

      <doctitle><![CDATA[<h1>PRG API</h1>]]></doctitle>
      <tag name="todo" scope="all" description="To do:" />
    </javadoc>

  </target>


When I include the doc-files-dir in the fileset I get
a Illegal Package error.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to