Fatal Error Missing Resource
I'm usingjavadoc 1.5 to write a custom doclet. The problem's that the properties file which I've modified and placed in my own Project-Package is no longer read by the Javadoc Compiler. However if I place the path to the properties file intools.jar, it gets read !
I've never had this problem withjavadoc 1.4, but now I'm stumped with this new javadoc version, and my company wants to migrate to java 1.5
Would really appreciate any help here. Has anyone used a different properties file other than the one in tools.jar ?
java.lang.Error: Fatal: Resource (novabitDoclet.resources.standardNovabit)for javadoc doclets is missing.
at com.sun.tools.doclets.internal.toolkit.util.MessageRetriever.getText(MessageRetriever.java:110)
at com.sun.tools.doclets.internal.toolkit.util.MessageRetriever.getText(MessageRetriever.java:92)
at com.sun.tools.doclets.internal.toolkit.util.MessageRetriever.getText(MessageRetriever.java:81)
at com.sun.tools.doclets.internal.toolkit.util.MessageRetriever.notice(MessageRetriever.java:387)
at novabitDoclet.AbstractDoclet.startGeneration(AbstractDoclet.java:115)
at novabitDoclet.AbstractDoclet.start(AbstractDoclet.java:77)
at novabitDoclet.NovabitDoclet.start(NovabitDoclet.java:48)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at com.sun.tools.javadoc.DocletInvoker.invoke(DocletInvoker.java:269)
at com.sun.tools.javadoc.DocletInvoker.start(DocletInvoker.java:143)
at com.sun.tools.javadoc.Start.parseAndExecute(Start.java:340)
at com.sun.tools.javadoc.Start.begin(Start.java:128)
at com.sun.tools.javadoc.Main.execute(Main.java:41)
at com.sun.tools.javadoc.Main.main(Main.java:31)

