Hi, I feel slowly queasy because I am annoying you so often and stealing your time. But I have done nothing else this week as curing this two errors in my cdk taverna project so please be patient with me. Am 14.10.2010 13:34, schrieb Stian Soiland-Reyes: > However, when running Taverna standalone, the plugin system will make > isolated classloaders according to the Maven dependencies. A Maven > module can only see his own code, everything directly stated as a > dependency, and all the dependencies of those dependencies again, > recursively. (Searched depth first). > > > So every module (Maven dependency) will get its own classloader which > can only see things 'below' him. It might be depended upon in three > different modules - but will not be able to see either of those or > their other dependencies. I think I understand what you mean. But how do I transfer this knowledge into the real world of poms. This is my dependency implementation: <dependency> <groupId>org.openscience.reactionenumerator</groupId> <artifactId>reactionenumerator</artifactId> <version>1.1.3</version> </dependency> <dependency> <groupId>org.openscience.cdk</groupId> <artifactId>cdk</artifactId> <version>1.3.5.1.git</version> </dependency> The problem is that the reactionenumerator dependency can't see the IAtom interface in the cdk dependency. But how must I implement it that it works? In the maven documentation is nothing to find of declaring dependencies of dependencies.
Andreas ------------------------------------------------------------------------------ Beautiful is writing same markup. Internet Explorer 9 supports standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. Spend less time writing and rewriting code and more time creating great experiences on the web. Be a part of the beta today. http://p.sf.net/sfu/beautyoftheweb _______________________________________________ taverna-hackers mailing list [email protected] Web site: http://www.taverna.org.uk Mailing lists: http://www.taverna.org.uk/about/contact-us/ Developers Guide: http://www.taverna.org.uk/developers/
