New plugin to handle native dependencies: nativedependencies-maven-plugin

2016-02-03 Thread Francois MAROT
Hello everyone, I wanted to advertise a "new" Maven plugin that may help you deal with native dependencies (.so, .dll, or whatever, as you may find other uses). It is forked from an existing but inactive plugin ( https://code.google.com/archive/p/mavennatives/ ) where I added a few f

RE: Native dependencies best practices

2011-01-24 Thread Haszlakiewicz, Eric
-Original Message- From: Ruben Garat [mailto:ruben01@gmail.com] Sent: Saturday, January 22, 2011 9:59 AM To: Maven Users List Subject: Native dependencies best practices Hi, I am trying to help get a project (Lightweight Java Game Library http://lwjgl.org/) into Maven Central

Native dependencies best practices

2011-01-22 Thread Ruben Garat
on the natives, but they share the groupId and artifactId maven complains that there is a cycle and refuses to build. Shouln't it work if I use runtime as scope for the native dependencies? At build time they should not be used, so the build shouldn't complain about a cycle and then I can attach

Re: Handling native dependencies via classifier(s)

2010-12-17 Thread Peter Bridge
include these in the classpath. Niels B Nielsen | Lead Engineer J.P. Morgan | IBTech Global Rates Derivatives -Original Message- From: Peter Bridge [mailto:peter_bri...@hotmail.com] Sent: 14 December 2010 12:45 To: users@maven.apache.org Subject: Handling native dependencies via

Handling native dependencies via classifier(s)

2010-12-14 Thread Peter Bridge
, although I'm very new to maven2. Somehow I expected that there would be a way to tie the native dependencies together with the jar in a more elegant way, maybe something like: dependency groupIdcom.jogamp.jogl/groupId artifactIdjogl-all/artifactId version

RE: Handling native dependencies via classifier(s)

2010-12-14 Thread Niels B Nielsen
Bridge [mailto:peter_bri...@hotmail.com] Sent: 14 December 2010 12:45 To: users@maven.apache.org Subject: Handling native dependencies via classifier(s) My project depends on a 3rd party library for OpenGL + Java called JOGL (http://jogamp.org/jogl/www/) The library is currently not maven-ized

RE: Need advice about adding native dependencies

2008-06-09 Thread Charlier, Etienne
Yup, The more I think about it, I guess that I should create a full native jar for each architecture, a java jar and hand-pick them in the packaging process. As of Qt-jambi 4.4 the natives jar are already there.. For Qt-jambi 4.3 I wrote a small shell script to create those jars. It's not on

Re: Need advice about adding native dependencies

2008-06-09 Thread Haim Ashkenazi
On Mon, Jun 9, 2008 at 11:18 AM, Charlier, Etienne [EMAIL PROTECTED] wrote: Yup, The more I think about it, I guess that I should create a full native jar for each architecture, a java jar and hand-pick them in the packaging process. As of Qt-jambi 4.4 the natives jar are already there.. For

Need advice about adding native dependencies

2008-06-05 Thread Haim Ashkenazi
Hi I'm creating a project that uses qtjambi (QT's java binding - http://trolltech.com/products/qt/features/language-support/java). It has both jar files and native libraries (statically compiled - seems to be working fine at least on a few linuxes I've tried). In their deployment documentation

RE: Need advice about adding native dependencies

2008-06-05 Thread Charlier, Etienne
for a maven repository managed by trolltech hosting those artifacts... without much success ( licensing issues ...) Cheers Etienne -Original Message- From: Haim Ashkenazi [mailto:[EMAIL PROTECTED] Sent: jeudi 5 juin 2008 12:57 To: Maven Users List Subject: Need advice about adding native

Re: Need advice about adding native dependencies

2008-06-05 Thread Haim Ashkenazi
Hi On Thu, Jun 5, 2008 at 3:14 PM, Charlier, Etienne [EMAIL PROTECTED] wrote: Hello, I'm busy right now trying to implement Option 3. based on jambi 4.4 preview (they now distribute platform specific jars containing the native code) - I wrote a shell script that - downloads the jambi jar

RE: Need advice about adding native dependencies

2008-06-05 Thread Charlier, Etienne
;-) -Original Message- From: Haim Ashkenazi [mailto:[EMAIL PROTECTED] Sent: jeudi 5 juin 2008 14:57 To: Maven Users List Subject: Re: Need advice about adding native dependencies Hi On Thu, Jun 5, 2008 at 3:14 PM, Charlier, Etienne [EMAIL PROTECTED] wrote: Hello, I'm busy right

Re: m2 profiles: pom with os specific (and native) dependencies

2007-04-06 Thread jcharum
Joerg Hohwiller wrote: 2. SWT also requires native libraries (dll/so files). Is there a proper way how to put native libs into a repository and define them as dependency? Did you ever find an elegant way to do this? I am running into the same issue with SWT as we speak. Specifically, I

Re: m2 profiles: pom with os specific (and native) dependencies

2006-12-12 Thread Bhupendra Bhardwaj
Hi, could you resolve your problem. I am in similar situation, so you may be helpful for me. And in the repo1.maven.org the swt for win32 is there, but didn't find the swt for linux in that repository. Can you tell me which repository has the swt for linux? I was thinking if the runtime binary

RE: m2 profiles: pom with os specific (and native) dependencies

2006-12-12 Thread Villere, Michael P.
: Tuesday, December 12, 2006 11:16 AM To: users@maven.apache.org Subject: Re: m2 profiles: pom with os specific (and native) dependencies Hi, could you resolve your problem. I am in similar situation, so you may be helpful for me. And in the repo1.maven.org the swt for win32 is there, but didn't find

Re: m2 profiles: pom with os specific (and native) dependencies

2006-11-30 Thread franz see
Good day to you, Joerg, 1. Try help:active-profiles to see which profiles are running to help you in your debuging 2. Try installing / deploying with packaging set to zip. Cheers, Franz Joerg Hohwiller wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, I am using SWT in

m2 profiles: pom with os specific (and native) dependencies

2006-11-29 Thread Joerg Hohwiller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, I am using SWT in my maven project. Now I have two major problems: 1. There are different JARs required depending on the OS: swt-win32 for Windows and swt-linux-gtk for linux, etc. Now I tried to definie these using profiles: profiles

RE: Native dependencies

2005-06-15 Thread Donszelmann, Mark
: Native dependencies One of the best thing about Java mojos too, is that as long as you don't tie it to any M2 APIs (or are prepared to translate the resulting objects), you can also wrap them in a thin Jelly plugin for use in Maven 1 and maintain one codebase. We'll be moving more of the Maven1

Re: Native dependencies

2005-06-15 Thread Brett Porter
a plugin in jelly from maven 1 to a mojo+marmelade (M2) and jelly wrapper (M1). Regards Mark -Original Message- From: Brett Porter [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 14, 2005 1:26 AM To: Maven Users List; dan tran Subject: Re: Native dependencies One of the best

RE: Native dependencies

2005-06-14 Thread Donszelmann, Mark
builds, unpacks and distributes Native Archives. Its not complete, see the issues in JIRA, but we are getting there. Regards Mark Donszelmann -Original Message- From: dan tran [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 2:07 PM To: Maven Users List Subject: Re: Native

Re: Native dependencies

2005-06-14 Thread dan tran
and distributes Native Archives. Its not complete, see the issues in JIRA, but we are getting there. Regards Mark Donszelmann -Original Message- From: dan tran [mailto:[EMAIL PROTECTED] Sent: Monday, June 13, 2005 2:07 PM To: Maven Users List Subject: Re: Native dependencies

Re: Native dependencies

2005-06-14 Thread Brett Porter
To: Maven Users List Subject: Re: Native dependencies In case you are going to build native code, take a look at maven-native-plugin -D On 6/13/05, Grant Ingersoll [EMAIL PROTECTED] wrote: Will give it a try. I am targeting Windows and *nix. Am new to Maven, so will have to go

RE: Native dependencies

2005-06-14 Thread Donszelmann, Mark
- From: dan tran [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 14, 2005 12:05 AM To: Maven Users List Subject: Re: Native dependencies Mark, Do you plan to port your plugin to M2? I think cpp-task is basically dead, I ended up to maintain cpptask with my own changes to support more option

Re: Native dependencies

2005-06-14 Thread dan tran
. The cpptasks system is usable and quite ok I think, just not maintained (very well). Let me know. Mark -Original Message- From: dan tran [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 14, 2005 12:05 AM To: Maven Users List Subject: Re: Native dependencies Mark, Do you plan to port

Re: Native dependencies

2005-06-14 Thread Brett Porter
: Tuesday, June 14, 2005 12:05 AM To: Maven Users List Subject: Re: Native dependencies Mark, Do you plan to port your plugin to M2? I think cpp-task is basically dead, I ended up to maintain cpptask with my own changes to support more option. Perhaps we can team up to merge cpptask

RE: Native dependencies

2005-06-14 Thread Donszelmann, Mark
-Original Message- From: dan tran [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 14, 2005 1:21 AM To: Maven Users List Subject: Re: Native dependencies I may be wrong, but i think the reason of cpptasks is not maintainable because it tries to know too much. If I am going to convert

Re: Native dependencies

2005-06-14 Thread dan tran
wrote some mathematical lib in jdk 1.5 with templates, and later backported it to 1.4). Regards Mark Donszelmann -Original Message- From: dan tran [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 14, 2005 1:21 AM To: Maven Users List Subject: Re: Native dependencies I may

RE: Native dependencies

2005-06-14 Thread Donszelmann, Mark
binary dependencies with native languages as maven uses it with Java is still there. Regards Mark Donszelmann -Original Message- From: dan tran [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 14, 2005 3:23 PM To: Maven Users List Subject: Re: Native dependencies See my inline comment

Native dependencies

2005-06-13 Thread Grant Ingersoll
Hi, I have a 3rd party JAR that requires a native library. How do I specify the dependency such that the native library gets put in a place where I can link with it at runtime? Thanks, Grant Ingersoll - To unsubscribe,

Re: Native dependencies

2005-06-13 Thread dan tran
- put the native files under your local repo - add them to your dependencies list At run time system use pregoal to add the native files to a localtion understand by your system, ORuse some sort of environment valiable to add your file to linkage path What OS are you targeting? -D On

Re: Native dependencies

2005-06-13 Thread Grant Ingersoll
Will give it a try. I am targeting Windows and *nix. Am new to Maven, so will have to go figure out the pregoal stuff (ironically, I was just looking into that for something else!) [EMAIL PROTECTED] 6/13/2005 3:44:55 PM - put the native files under your local repo - add them to your

Re: Native dependencies

2005-06-13 Thread dan tran
In case you are going to build native code, take a look at maven-native-plugin -D On 6/13/05, Grant Ingersoll [EMAIL PROTECTED] wrote: Will give it a try. I am targeting Windows and *nix. Am new to Maven, so will have to go figure out the pregoal stuff (ironically, I was just looking into