vote up 3 vote down star
1

Hello,

in my J2EE project I've a couple of dependencies, which are not available in any Maven repository, because they're proprietary libraries. These libraries need to be available at runtime, so that have to be copied to target/.../WEB-INF/lib ...

Right now, I'm listing them as system dependency in my POM, but with this method the problem is, that aren't being copied to the target build during compilation. Also this method is not very elegant.

So which is the best way to integrate them in Maven?

Note: I don't want to create my own Maven repository.

flag
1  
I really think you should review your decision of creating a Maven repository. It's not hard at all and 100% worth it. – Robert Munteanu Jul 22 at 20:47

5 Answers

vote up 1 vote down check

As you've said you don't want to set up your own repository, perhaps this will help.

You can use the install-file goal of the maven-install-plugin to install a file to the local repository. If you create a script with a Maven invocation for each file and keep it alongside the jars, you (and anyone else with access) can easily install the jars (and associated pom files) to their local repository.

For example:

mvn install:install-file -Dfile=/usr/jars/foo.jar -DpomFile=/usr/jars/foo.pom
mvn install:install-file -Dfile=/usr/jars/bar.jar -DpomFile=/usr/jars/bar.pom

You can then reference the dependencies as normal in your project.

However your best bet is still to set up an internal remote repository and I'd recommend using Nexus myself. It can run on your development box if needed, and the overhead is minimal.

link|flag
Thanks this method is working good for me now. I extended the POM so that files are being automatically being installed to the local rep: pastebin.ca/1504318 – samson Jul 23 at 13:12
Glad to help, but as others have said the best approach would be to use a Maven repository manager. This approach does not scale well. – Rich Seller Jul 23 at 13:35
vote up 5 vote down

You need to set up a local repository that will host such libraries. There are a number of projects that do exactly that. For example Artifactory.

link|flag
3  
Also archiva: archiva.apache.org – teabot Jul 22 at 9:47
3  
And Nexus: nexus.sonatype.org – teabot Jul 22 at 9:52
A point on terminology, those are internal remote repositories, not local repositories. The local repository is the one on the local file system dependencies are downloaded to. – Rich Seller Jul 22 at 11:11
vote up 1 vote down

you can install them in a private, local repository (e.g. .m2/repository under your home directory): more details here

link|flag
1  
Yes I could do that, but then I'd have to tell everyone who wants to build the project that he has to put files X, Y in directory Z and that really complicates things. After all I want to use Maven to simplify the build process. – samson Jul 22 at 9:40
vote up 0 vote down

If I am understanding well, if what you want to do is to export dependencies during the compilation phase so there will be no need to retrieve manually each needed libraries, you can use the mojo copy-dependencies.

Hope it can be useful in your case (examples)

link|flag
vote up 0 vote down

Continue to use them as a system dependency and copy them over to target/.../WEB-INF/lib ... using the Maven dependency plugin:

http://maven.apache.org/plugins/maven-dependency-plugin/examples/copying-artifacts.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.