Re: [Java-gnome-developer] (Hacked) version of 4.0.13 in Maven repo
Brought to you by:
afcowie
|
From: Stefan S. <ste...@gm...> - 2009-11-15 11:36:37
|
On Fri, 2009-11-13 at 12:37 -0500, Jacek Furmankiewicz wrote: > I added the dependency on the utility mentioned in this entry and > modified loadNativeCode() to attempt loading the .so directly from > the jar's META-INF/lib (which is how I deploy it in the Maven repo). Have you tried declaring the libgtkjni.so as separate artifact with type 'so'? I think something like this could work: <dependency> <groupId>org.gnome</groupId> <artifactId>libgtkjni</artifactId> <version>4.0.13</version> <type>so</type> </dependency> Stefan |