You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by "Jens v.P." <de...@jevopi.de> on 2001/12/12 15:10:35 UTC

javadoc packagenames="*"

Hello,

I'm looking for a way to call javadoc wihtput specifiying any package.
Ant's javadoc task support wildcard in the packagenames attribute,
like packagenames="com.*".

But I don't want to specify any packagenames, even not the root
one. I've got a common project directory structure with one source
directory. What I want is javadoc to generate the API help for all of
my source files. And - how can I specify classes which are not part of
any package? Is there a special root-package symbol I can use?

The problem is that the javadoc task doesn't support a
    packagename="*"
attribute setting.

My xml looks like this:

<target name="javadoc" description="generates javadoc in ${doc}/javadoc">
<mkdir dir="${javadoc}"/>
<javadoc packagenames="*" sourcepath="${src}" destdir="${javadoc}">
<classpath>
  <pathelement path="${classes}"/>
  <path refid="lib.classpath" />
</classpath>
</javadoc>
</target>

This doesn't work. Could anyone help me? The goal is to create a very
generic build.xml which is working on a default file structure.



jens


-- 
Best regards,
 Jens                          mailto:developer@jevopi.de


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>