Re: Javadoc command too long with JDK 10

2018-08-06 Thread Roger and Beth Whitcomb
Never mind, after all.  I see that our build file is the one adding all this to the classpath ... :( On 8/6/18 9:47 AM, Roger Whitcomb wrote: Hi all, I'm trying to work with JDK 10 and the Apache Pivot project, and I'm getting this error on Windows: C:\Projects\pivot\trunk\bu

RE: javadoc fail (solved)

2016-02-20 Thread Martin Gainty
fixed using the javadoc now works and produces html output in /MAVEN-~1/ZOOKEE~1/src/java/java/generated Thanks! Martin __ > From: mgai...@hotmail.com > To: user@ant.apache.org > Sub

Re: Question re Javadoc task

2011-10-31 Thread Michael Ludwig
Rhino schrieb am 30.10.2011 um 13:14 (-0400): > > How do I tell the javadoc task which doctype I want for my > generated Javadocs? It is generating HTML 4.01 but I want it to > generate XHTML1.0. Isn't javadoc always that rusty-trusty HTML 4.01? Take a look at the source of this page, HTML 4.01,

Re: Question re Javadoc task

2011-10-30 Thread Rhino
I've solved this problem for myself. My objective was to be able to display accented letters correctly in my Javadocs, such as the French "e acute", and I managed to accomplish that by adding these options to the Javadoc command: encoding="UTF-8" docencoding="UTF-8" charset="UTF

Question re Javadoc task

2011-10-30 Thread Rhino
How do I tell the javadoc task which doctype I want for my generated Javadocs? It is generating HTML 4.01 but I want it to generate XHTML1.0. I don't see anything in the javadoc parameters in the Ant Manual that specifies the HTML doctype. -- Rhino

Re: JavaDoc problem

2009-03-03 Thread Troy Bull
I am not sure if this is my problem or not.. The stack trace looks to me like it is trying to scan for some files or something: BUILD FAILED java.lang.NullPointerException at org.apache.tools.ant.types.AbstractFileSet.setupDirectoryScanner(AbstractFileSet.java:477) at org.apache.t

RE: JavaDoc problem

2009-03-03 Thread Martin Gainty
Troy- I found javadoc had a hard dependency on ../etc/common.xml which I solved with HTH Martin __ Disclaimer and confidentiality note Everything in this e-mail and any attachments relates to the official business of Sen

Re: javadoc

2009-02-26 Thread Antoine Levy Lambert
Hi, no, javadoc is not able out of the box to generate documentation for several projects in one go. It will on the command line do this for you if you enumerate the list of source directories like in this example [1]: C:> javadoc -sourcepath C:\user1\src;C:\user2\src com.mypackage Ant has a

Re: javadoc from class or jar files?

2008-07-31 Thread supareno
sorry for the last mail, it was an error ;-( so, the stuff that i would to say is that, most of the time, decompiling classes does not generate javadoc... you must have the source of each jar to generate javadoc or download the javadoc of each project ... hope this help supareno Can I crea

Re: javadoc from class or jar files?

2008-07-31 Thread supareno
0mindspin311 a écrit : Can I create documentation from class or jar files? I tried both. Putting a list of jars in the classpath, and unjarring and putting the class files themselves as the classpath. Both times I was including actual source I was building too, but want to generate documentation

Re: javadoc task

2008-06-04 Thread Mike Tardif
Hi I suddenly ran into the very same error when my fileset dir attribute was set to a root path that was just a wee bit longer than before. As a result, the arguments passed to the javadoc process get truncated, and the error ensues. I was able to work around the problem by using the usexterna

Re: javadoc difference between ant 1.6 and ant 1.7

2007-12-18 Thread bart br
Bart Bruggeman wrote: > > click on http://issues.apache.org/bugzilla/show_bug.cgi?id=41958 cause > and find out the cause of your problem or try the next code snippet: > > The following snippet: > > > > -- View this message in context: http://www.nabble.com

Re: javadoc task does not pick up package-info.java from included filesets

2007-09-12 Thread Peter Reilly
On 9/12/07, Prashant Reddy <[EMAIL PROTECTED]> wrote: > > On Wed, 2007-09-12 at 14:37 +0100, Peter Reilly wrote: > > > Shouldn't javadoc task pick this artifact (package-info.java) given > > that > > > this file is meant only for the javadoc tool ? Why should the user > > have > > > to explicitly i

Re: javadoc task does not pick up package-info.java from included filesets

2007-09-12 Thread Prashant Reddy
On Wed, 2007-09-12 at 14:37 +0100, Peter Reilly wrote: > > Shouldn't javadoc task pick this artifact (package-info.java) given > that > > this file is meant only for the javadoc tool ? Why should the user > have > > to explicitly include it ? > 1) the fileset is not only used in I was thinking m

Re: javadoc task does not pick up package-info.java from included filesets

2007-09-12 Thread Peter Reilly
On 9/12/07, Prashant Reddy <[EMAIL PROTECTED]> wrote: > Hello ANT Users, > > I have a lot of files from which javadoc needs to be generated. > > Not all java files from a package need to be published in javadoc. > > To enable this i use a number of s that provide input to > javadoc task. > > Someth

RE: RE: Javadoc error

2007-08-16 Thread dtoch
undefined

Re: Javadoc error

2007-08-15 Thread Dominique Devienne
On 8/15/07, Eric Wood <[EMAIL PROTECTED]> wrote: > We are running javadoc against about 2500 java files and when we run it > we get the following error: > > javadoc: > [javadoc] Generating Javadoc > [javadoc] Javadoc execution > [javadoc] Warning: UNIXProcess.forkAndExec native error: The par

RE: Javadoc error

2007-08-15 Thread Loehr, Ruel
Break it up into several calls? -Original Message- From: Eric Wood [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 15, 2007 1:17 PM To: user@ant.apache.org Subject: Javadoc error We are running javadoc against about 2500 java files and when we run it we get the following error: javado

Re: Javadoc task

2007-06-21 Thread Deus Davis
Thank you all, that fixed it!! It was the links! Thank you again! Deus Davis wrote: > > I have a build which will occasionally hang in the middle of running my > javadoc task. I have increased memory usage to 1GB and still have the > issue. I turned on verbose mode and still I am getting no ind

Re: Javadoc task

2007-06-20 Thread Peter Reilly
On 6/20/07, Deus Davis <[EMAIL PROTECTED]> wrote: This doesn't happen every time I build bu frequently. The only links in the javadoc task are the following. Could this be the problem? I would

Re: Javadoc task

2007-06-20 Thread Deus Davis
This doesn't happen every time I build bu frequently. The only links in the javadoc task are the following. Could this be the problem? Peter Reilly-2 wrote: > > It could be that you are behi

Re: Javadoc task

2007-06-19 Thread Peter Reilly
It could be that you are behind a proxy and you are trying to link to some off-site http:// location. Peter On 6/19/07, Deus Davis <[EMAIL PROTECTED]> wrote: I am compiling with version 1.5 and I am specifying 1.5 as my javac version Qazwart wrote: > > Take a look at the "target" and "source"

Re: Javadoc task

2007-06-19 Thread Deus Davis
I am compiling with version 1.5 and I am specifying 1.5 as my javac version Qazwart wrote: > > Take a look at the "target" and "source" properties of the > task. If you use a higher Java JDK than you want to compile to, you > can set these properties to emulate the Java JDK you are compilin

Re: Javadoc task

2007-06-18 Thread Qazwart
Take a look at the "target" and "source" properties of the task. If you use a higher Java JDK than you want to compile to, you can set these properties to emulate the Java JDK you are compiling for and the Java JDK you will be running on. You can also set the "ant.build.javac.source" and

Re: javadoc

2007-04-11 Thread Res Pons
Thank you for all your help. I will just do it in Ant, why reinvent the whee? Original Message Follows From: "Scot P. Floess" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: Ant Users List Subject: Re: javadoc Date: Tue, 10 Apr 2007 17:31:55 -0400 Res: Yeah you d

Re: javadoc

2007-04-10 Thread Scot P. Floess
[EMAIL PROTECTED] To: Ant Users List Subject: Re: javadoc Date: Mon, 09 Apr 2007 20:27:26 -0400 Res: I have very little experience writing Windows batch files - much better versed at Linux/Unix. With that said, here is how I would do javadoc where I want to output to a directory entitled "f

Re: javadoc

2007-04-10 Thread Res Pons
it to. Looking at your scripts I see that I was basically doing the same thing in DOS. Thanks again Original Message Follows From: "Scot P. Floess" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: Ant Users List Subject: Re: javadoc Date: Mon, 09 Apr 2007 20:27:2

Re: javadoc

2007-04-09 Thread Scot P. Floess
va files. Is this not correct? Original Message Follows From: "Scot P. Floess" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: Ant Users List Subject: Re: javadoc Date: Mon, 09 Apr 2007 18:04:57 -0400 Res: You are gonna need to specify all the java files to javadoc a

Re: javadoc

2007-04-09 Thread Res Pons
java) do javadoc.exe %i -d mydocs Basically I'm starting at the root and looping/recursing down every path and looking for all .java files. Is this not correct? Original Message Follows From: "Scot P. Floess" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To

Re: javadoc

2007-04-09 Thread Res Pons
List" To: "Ant Users List" Subject: Re: javadoc Date: Mon, 9 Apr 2007 15:59:06 -0600 In your installation of Java SDK documentation read carefully tooldocs/windows/javadoc.html#runningjavadoc Specifically, don't think you can put a -d switch after *.java On Apr 9, 2007,

Re: javadoc

2007-04-09 Thread Scot P. Floess
Let me elaborate: javadoc: error - No packages or classes specified. usage: javadoc [options] [packagenames] [sourcefiles] [EMAIL PROTECTED] Notice the [sourcefiles] option? So in some fashion you need to specify which files you wish to run javadoc against... Personally I would just use the

Re: javadoc

2007-04-09 Thread Scot P. Floess
Res: You are gonna need to specify all the java files to javadoc against... Type javadoc at the command line and it will tell you so :) If you were on a *nix environment you could do something with find... Curious...why don't you want to do this with Ant in your experimentation? Clearly it d

Re: javadoc

2007-04-09 Thread Jack J. Woehr
In your installation of Java SDK documentation read carefully tooldocs/windows/javadoc.html#runningjavadoc Specifically, don't think you can put a -d switch after *.java On Apr 9, 2007, at 3:41 PM, Res Pons wrote: I would like to test and run javadoc at a DOS prompt before writing ant cod

RE: javadoc

2007-04-09 Thread Res Pons
Reposting again. Shouldn't javadoc automatically recurse through directories? It doesn't for me. I would like to run javadoc at the root of all my projects w/o telling it it each .java file. We have a multi-project platform all residing within a master project and each having their own src

RE: javadoc

2007-04-05 Thread Res Pons
correction: that's src and not src and just a typo in this email and not at the DOS prompt Original Message Follows From: "Res Pons" <[EMAIL PROTECTED]> Reply-To: "Ant Users List" To: user@ant.apache.org Subject: javadoc Date: Thu, 05 Apr 2007 21:28:18 -0700 Almost wrong forum, I know.

Re: javadoc difference between ant 1.6 and ant 1.7

2007-03-29 Thread Xavier Hanin
On 3/29/07, Antoine Levy-Lambert <[EMAIL PROTECTED]> wrote: Hello Xavier, Bonjour Antoine, a -verbose shows the command line used to start javadoc. At least this is what I expect. Not sure to understand. Steve asked 'what does a -verbose log say?' and as answer I attached the verbose log

Re: javadoc difference between ant 1.6 and ant 1.7

2007-03-29 Thread Antoine Levy-Lambert
Hello Xavier, a -verbose shows the command line used to start javadoc. At least this is what I expect. Antoine > > > Bug #41958 > > what does a -verbose run say? > > -

Re: javadoc difference between ant 1.6 and ant 1.7

2007-03-27 Thread Xavier Hanin
On 3/27/07, Steve Loughran <[EMAIL PROTECTED]> wrote: Xavier Hanin wrote: > Hi, > > I'm currently testing ant 1.7 and I run into an issue with the javadoc > task. > > The following snippet: > > > > > Works with windows vista + jdk 1.6 + ant 1.6.5, but fails with windo

Re: javadoc difference between ant 1.6 and ant 1.7

2007-03-27 Thread Steve Loughran
Xavier Hanin wrote: Hi, I'm currently testing ant 1.7 and I run into an issue with the javadoc task. The following snippet: Works with windows vista + jdk 1.6 + ant 1.6.5, but fails with windows vista + jdk 1.6 + ant 1.7.0: Javadoc failed: java.io.IOException: C

RE: javadoc difference between ant 1.6 and ant 1.7

2007-03-26 Thread Res Pons
I'm interested in this problem as well, Also if anyone could point me to documentation what I need to set up and run javadocs in my nighly builds. Is it as simple as adding the javadoc task to one of my targets and those property values defined? Original Mes

Re: Javadoc task not working in 1.7beta3?

2006-10-25 Thread Antoine Levy-Lambert
Hello Adrian, I do not know where this problem is coming from. What about filling in a bug report with a simple build.xml, specifying your environment (OS, JDK version). Regards, Antoine Rodriguez, Adrian wrote: > Hi. I can't javadoc to generate my documentation using 1.7beta3. Here > are the me

Re: javadoc

2005-12-14 Thread Thom Hehl
Thanks! Changed to: On Wed, 14 Dec 2005, Thom Hehl <[EMAIL PROTECTED]> wrote: apidocs: [javadoc] scanning C:\src\heavyweight for packages. It should be scanning C:\src, not C:\src\heavyweight since heavyweight is your top level package in the source tree. At least the directory

Re: javadoc

2005-12-14 Thread Stefan Bodewig
On Wed, 14 Dec 2005, Thom Hehl <[EMAIL PROTECTED]> wrote: > apidocs: > [javadoc] scanning C:\src\heavyweight for packages. It should be scanning C:\src, not C:\src\heavyweight since heavyweight is your top level package in the source tree. At least the directory structure in your other respons

Re: javadoc

2005-12-14 Thread Thom Hehl
One more thing. I thought it would be useful to include a directory listing. Here: Volume in drive C is SQ003706 Volume Serial Number is B4BD-A73C Directory of C:\src\heavyweight 12/14/2005 09:20 AM . 12/14/2005 09:20 AM .. 12/14/2005 09:16 AM build 12

Re: javadoc

2005-12-14 Thread Thom Hehl
OK, here's my current target from build.xml: packagenames="heavyweight.gui.*,heavyweight.io.*,heavyweight.re.*,heavyweight.util.*" sourcepath="${src}" defaultexcludes="yes" destdir="docs/api" author="true" version="true" use="true"

Re: javadoc

2005-12-13 Thread Stefan Bodewig
On Tue, 13 Dec 2005, Thom Hehl <[EMAIL PROTECTED]> wrote: > packagenames="heavyweight.gui.* heavyweight.io.* heavyweight.re.* > heavyweight.util.*" the separator for packagenames is "," not " ". >sourcepath="${src}" might be the most important information. > BUILD FAILED C:\src\hea

Re: javadoc

2005-12-13 Thread Thom Hehl
I have changed to: packagenames="heavyweight.gui,heavyweight.io,heavyweight.re,heavyweight.util" Same exact error. [EMAIL PROTECTED] wrote: Try this format for your packagenames attribute: packagenames="heavyweight.gui,heavyweight.io,heavyweight.re,heavyweight. util" HTH, Kajsa Anderson

RE: javadoc

2005-12-13 Thread Kajsa.Anderson
Try this format for your packagenames attribute: packagenames="heavyweight.gui,heavyweight.io,heavyweight.re,heavyweight. util" HTH, Kajsa Anderson > -Original Message- > From: Thom Hehl [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 13, 2005 1:46 PM > To: user@ant.apache.org > Sub

RE: Javadoc on all subdirectories

2005-07-07 Thread Bill Rich
Maybe try a . Try fiddling around with this to see if you can make it work. HTH Bill -Original Message- From: Kjersti Berg [mailto:[EMAIL PROTECTED] Sent: Thursday, July 07, 2005 1:37 AM To: Ant Users List Subject: Re: Javadoc on all subdirectories

Re: Javadoc on all subdirectories

2005-07-07 Thread Kjersti Berg
On 07/07/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > first thought would be > > > Jan > Thanks for the quick reply. This gives me this error: doc-all: [javadoc] BUILD FAILED: file:C:/Workspace_WSADIE5/ALT_FOR_JAVADOC/NLP_Build/build.xml:189: No source files and no packages have be

RE: javadoc task

2005-05-02 Thread Klas.Nyman
Yepp! Tanks for your quick reply. :) /Klas -Original Message- From: Stefan Bodewig [mailto:[EMAIL PROTECTED] Sent: den 2 maj 2005 16:26 To: user@ant.apache.org Subject: Re: javadoc task On Mon, 2 May 2005, Klas Nyman <[EMAIL PROTECTED]> wrote: > the build suddenly broke

Re: javadoc task

2005-05-02 Thread Stefan Bodewig
On Mon, 2 May 2005, Klas Nyman <[EMAIL PROTECTED]> wrote: > the build suddenly broke when the project grew and some *.java files > were added. it is a small numer of java files (<200) but quite many > jars in the classpath. Probably your command line has grown too long for your OS. Try whether s

RE: javadoc task

2005-05-02 Thread Klas.Nyman
I'm using java 1.5.0_02 and ant 1.6.3 (also broken in 1.6.2) /Klas -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: den 2 maj 2005 16:15 To: user@ant.apache.org Subject: javadoc task Hi! I have a problem running the javadoc task; it stops with C:\UTV\java\F

RE: javadoc task issue with many files

2005-03-07 Thread Greg Irvine
Ok. Problem solved. The “useexternalfile=yes” option to the task reduced, as it said it would in the docs ;), the command line length and bingo. Next time I’ll tell myself RTFM! :) Greg. From: Greg Irvine [mailto:[EMAIL PROTECTED] Sent: Tuesday, 8 Ma

Re: Javadoc problem

2005-01-08 Thread Antoine Levy-Lambert
Hello Rhino, I think javadoc has a classpath attribute. You presumably need to put in the javadoc classpath the jar containing this common.Utilities class (or the root directory containing the corresponding classes). Normally the classpath you use to compile a module is also OK to run javadoc. Chee

RE: javadoc task

2004-11-11 Thread Dave Pawson
On Wed, 2004-11-10 at 19:28, Charles Daniels wrote: > > ... > Yep That did it. Many thanks folks. I now have impressive documentation! -- Regards DaveP. XSLT&Docbook FAQ http://www.dpawson.co.uk/xsl - To unsubscribe

RE: javadoc task

2004-11-10 Thread Dave Pawson
On Wed, 2004-11-10 at 19:36, Dominique Devienne wrote: > > It may be that by default like Javadoc doesn't pick up package > private members. Unless you meant interface xyz instead of class xyz. > And if not, then most likely your string, if it's a constant, should be > declared as static final,

RE: javadoc task

2004-11-10 Thread Dominique Devienne
> From: Dave Pawson [mailto:[EMAIL PROTECTED] > > I have a java file I use simply to hold string > values used elsewhere. > public class xyz{ > /** > * description > */ > String x = ".."; > } > > javadoc is not picking up the docstrings for output. > > Is there an ant property I need to set

RE: javadoc task

2004-11-10 Thread Charles Daniels
By default javadoc only includes docs for public and protected classes and members. Since your variable is declared as package private, it's javadoc will not be included by default. Using Ant's javadoc task, you can specify a value for the access attribute. The default value is protected, matchi

Re: Javadoc spell checker

2004-07-28 Thread Ivan Ivanov
Hi Bill, I just gave try to jazzy and it sounds promising. I checked its sources and it doesn't seem to have Ant tasks so I will be happy if you share yours. Thank you Ivan --- Bill Chmura <[EMAIL PROTECTED]> wrote: > > I wrapped an ant task around the jazzy spell checker > awhile back. Don't

RE: Javadoc flag

2004-05-27 Thread Jan . Materne
Without having deeper knowledge about redirector ... would it make sense to add redirector support to Commandline class? Jan > -Original Message- > From: Matt Benson [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 27, 2004 4:45 PM > To: Ant Users List > Subject: R

RE: Javadoc flag

2004-05-27 Thread Matt Benson
--- [EMAIL PROTECTED] wrote: > Yes, in cvs (Ant 1.6.2). has support for > s and I saw that > uses the Commandline class for its > execution. > But thats not my topic :-) > > Jan I hear you. ;) I'll see what I can do. -Matt __ Do yo

RE: javadoc of multiple sub-projects

2003-11-17 Thread Svetlin Stanchev
> From: Keith Hatton [mailto:[EMAIL PROTECTED] > As a work-around, could you all the source trees to a > single temporary location, and run from there? Yep, I ended up doing this. It still would not work without a fileset (maybe because I have two top-level hierarchies, .com and .de?) but that

RE: javadoc of multiple sub-projects

2003-11-14 Thread Keith Hatton
Hi Svetlin, As a work-around, could you all the source trees to a single temporary location, and run from there? Keith -Original Message- From: Svetlin Stanchev [mailto:[EMAIL PROTECTED] Sent: 14 November 2003 13:58 To: 'Ant Users List' Subject: RE: javadoc of multiple su

RE: javadoc of multiple sub-projects

2003-11-14 Thread Svetlin Stanchev
etlin > -Original Message- > From: Vikas Phonsa [mailto:[EMAIL PROTECTED] > Sent: Thursday, November 13, 2003 5:50 PM > To: 'Ant Users List' > Subject: RE: javadoc of multiple sub-projects > > > Hi Svetlin, > > If you are trying to build javadocs fo

RE: javadoc of multiple sub-projects

2003-11-14 Thread Svetlin Stanchev
report in the tracking system, if nobody can see an error in the (corrected) code snippet? -- Svetlin > -Original Message- > From: W. Sean Hennessy [mailto:[EMAIL PROTECTED] > Sent: Thursday, November 13, 2003 5:14 PM > To: 'Ant Users List' > Subject: RE

RE: javadoc task failure

2003-10-15 Thread W. Sean Hennessy
Kinda tough to be specific without seeing the buil.xml Perhaps the addition of a core task within the target that is using to test the source directory and conditionally call javadoc based on the resulting property value . -Original Message- From: Matt [mailto:[EMAIL PROTECTED] Sent

RE: javadoc nested elements: group, tag, link don't work

2003-08-14 Thread David
Thank you, that was the problem, I am beginner so something like this sometims happends. Thanks again, David -Mensaje original- De: Stefan Bodewig [mailto:[EMAIL PROTECTED] Enviado el: miercoles, 13 de agosto de 2003 13:06 Para: [EMAIL PROTECTED] Asunto: Re: javadoc nested elements

RE: Javadoc

2003-06-10 Thread Sujan Digumarti
Is there any task to insert javadoc comments in the java source files ? Regards, Sujan - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]