[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.platform] How to generate plugin's javadoc from ant ?
|
- From: Guillaume Bourel <gbourel@xxxxxx>
- Date: Fri, 31 Oct 2008 10:14:37 +0100
- Newsgroups: eclipse.platform
- Organization: EclipseCorner
- User-agent: Thunderbird 2.0.0.17 (Windows/20080914)
Hey,
I was wondering how to generate plugin's javadoc from an ant build file,
I generated this ant build file from the IDE using export=>javadoc but I
had a few issues :
* the produced file contains a classpath pointing to dependent
projects bin (ie. output) directory and the pde build task :
pde.exportPlugins doesn't create .class files in the bin (ie. output)
directories
I fix this issue by using the eclipse.incrementalbuild task
* the produced file contains a classpath with the full name of the
dependent jars (with version number). If anyone of this plugins version
changes the build file will no more work.
How can I find my plugin's classpath (ie. regenerating it) from an ant
build file to solve this issue ?
(I tried the eclipse.buildscript task, but I don't really understand
what should be generated by this task)
Cheers,
Guillaume.