Hi all guys, I have the task of managing a 3rd party forest of dependencies which contain JNI code, so let's immagine that the provided library directory tree is as shown below:
linux-i386 ├── a.jar ├── b.jar (depends from a.jar) └── c.jar (depends from a.jar and b.jar) linux-x86_64 ├── a.jar ├── b.jar (depends from a.jar) └── c.jar (depends from a.jar and b.jar) mac-x86_64 ├── a.jar ├── b.jar (depends from a.jar) └── c.jar (depends from a.jar and b.jar) I was going to put all that jar in my Nexus installation, when I just realized I need classifiers to manage each platform... While manage a single dependency would be really easy, managing transitive dependencies per platform is not trivial, should be profiled... Do you have any suggestion on how that situation could be handled? Many thanks in advance, all the best! -Simo http://people.apache.org/~simonetripodi/ http://simonetripodi.livejournal.com/ http://twitter.com/simonetripodi http://www.99soft.org/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
