Results 1 to 1 of 1
- 12-08-2011, 12:43 PM #1
Member
- Join Date
- Nov 2010
- Posts
- 54
- Rep Power
- 0
Cross linking (cross referencing) javadoc between projects.
Hi All
I'm having trouble getting javadoc to reference another project's API.
There's a strict hirearchy between the projects (a "common" project referenced by an "app" project).
Both projects build just fine, so there's no issue with classes and packages not actually existing.
I've built the common project javadoc and thrown it on a webserver on my intranet.
I've added a link to the api (on my intranet) to the javadoc ant task in the app project.
The ant tasks for the two projects are as follows:Java Code:Javadoc still spits out error messages of the form: [javadoc] C:\Users\couling\workspace\app\src\com\blahblah\app\AppMain.java:14: package com.blahblah.common.foo does not exist [javadoc] import com.blahblah.common.foo.Bar
Java Code:<!-- common --> <javadoc access="protected" author="true" classpath="." destdir="out/doc/docs" nodeprecated="false" nodeprecatedlist="false" noindex="false" nonavbar="false" notree="false" packagenames="*" source="1.6" sourcepath="src" splitindex="true" use="true" version="true"> <link href="http://download.oracle.com/javase/6/docs/api/" /> </javadoc>
Any thoughts on what I need to do to get app to see common?Java Code:<!-- app --> <javadoc access="protected" author="true" classpath="." destdir="out/doc/docs" nodeprecated="false" nodeprecatedlist="false" noindex="false" nonavbar="false" notree="false" packagenames="com.blahblah.app.*" source="1.6" sourcepath="src" splitindex="true" use="true" version="true"> <link href="http://intranet.blahblah.com/api/common/docs/" /> <link href="http://download.oracle.com/javase/6/docs/api/" /> </javadoc>----Signature ----
Please use [CODE] tags and indent correctly. It really helps when reading your code.
Similar Threads
-
Where are the compiler cross reference listings
By Norm in forum Forum LobbyReplies: 0Last Post: 07-14-2011, 04:21 PM -
Cross dissolving of 2 images.
By shakeel in forum Java 2DReplies: 6Last Post: 03-02-2011, 11:44 PM -
Cross posting question
By tashimoto in forum Forum GuidesReplies: 7Last Post: 12-28-2010, 06:06 PM -
java with cross-platform
By rupeshnerkar in forum Advanced JavaReplies: 1Last Post: 10-08-2010, 09:06 PM -
applet won't draw a cross
By michcio in forum New To JavaReplies: 1Last Post: 06-02-2009, 07:03 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks