On Sat, Feb 5, 2011 at 11:37 PM, Mark Fortner <[email protected]> wrote: > > In my log file it says: > 2011-02-05 16:57:44,821 ERROR: Could not load module from class > org.argouml.ui.argoprint.ArgoPrintMenuPlugin (ModuleLoader2.java:462)
It's not clear from the error message, but this is caused by not being able to load a module that you specified in the 'argouml.modules' property. Typically this property is only used in a development environment like Eclipse where you've already got the classes on your classpath and just want them loaded/enabled as modules. I'll clarify the error message to make it more obvious. I was able to replicate the problem with an ArgoPrint module built from the current SVN head using Ant and running it with ArgoUML 0.32 You can get more detailed logging by starting ArgoUML with this command: java -ea -Xmx512m -Dlog4j.configuration=org/argouml/resource/full_console.lcf -jar argouml.jar The logging makes it clear that a) the ArgoPrint module is being loaded and b) Translator is trying very hard to load the argoprint resources, but not finding it in any of the classloaders that it knows about. My best guess at this point is that your JARs manifest is wrong, but additional debugging will have to wait until the game is over... Tom ------------------------------------------------------ http://argouml.tigris.org/ds/viewMessage.do?dsForumId=450&dsMessageId=2702556 To unsubscribe from this discussion, e-mail: [[email protected]]. To be allowed to post to the list contact the mailing list moderator, email: [[email protected]]
