I have copied the JARs into src\main\webapp\WEB-INF\lib. I use eclipse . It cannot setting by add jars one-by-one to
Project->Java Build Path -> add jars. If do that, then Project-> Maven -> Update Project Configuration , they are removed by Maven.And Eclipse show errors , which contains " xxx cannot be resolved".

Env:
Eclipse Java EE IDE for Web Developers.
Version: Indigo Service Release 1
Build id: 20110916-0149

m2e - Maven Integration for Eclipse 1.0.100.20110804-1717

Note: I don't want to create my own Maven repository. It just is used one time. How should I do ? Thanks.

link|improve this question

40% accept rate
feedback

4 Answers

up vote 3 down vote accepted

Not all libraries can be found in a public Maven repository, for example your own libraries or proprietary libraries. Anyway first you can search the Maven Repository, maybe some of them are there.

In case they are really not there, and you don't want to install Nexus or Artifactory, you can choose one of these two approaches:

  • install the jars in your local repository cache, no need to create a special repository. See the instructions on mkyong.

  • another approach is using system dependencies, you just put a path to reach the Jar in the filesystem. It's a less recommended approach, but if you really want it will work. Here is the official documentation.

link|improve this answer
Actually , it is an very old project with too many JARs.I donot wnat to install JARs in my local reposity. – fjjiaboming Oct 6 '11 at 10:26
You can use system dependencies then. I've added it to the answer. – stivlo Oct 6 '11 at 10:29
I really donot like approach 2. First, one jar to one denpendcy;Second , too many JARs that I need manually add dependency one-by-one. So , I must adopt approach 1 to install Local repository one-by-one if have no better approaches. Thanks! – fjjiaboming Oct 6 '11 at 10:40
As always, the solution to "too much manual labor" is "get the computer to do it". Write a script that updates your config file with the list of .jar files. ;-) – Chris Nava Oct 6 '11 at 17:16
Chris Nava , How about one dependency coordination , groupId , artifactId and version? – fjjiaboming Jan 4 at 8:10
feedback

Using the maven repository is part of the advantage of using Maven - you then add these jars to your POM and you have access to them through the Maven plugin in Eclipse. Otherwise, you're getting no benefit from using Maven!

link|improve this answer
Yeah... Have other approach? – fjjiaboming Oct 6 '11 at 10:28
See above from stivlo – TrueDub Oct 6 '11 at 10:30
feedback

Add this an a Systems Dependency.


In case you want to add this (this uses jquantlib as example) to the maven local repo use:

mvn install:install-file -Dfile=./jquantlib-0.2.4.jar -DgroupId=org.jquantlib -DartifactId=jquantlib -Dversion=0.2.4 -Dpackaging=jar

In order to do this I use a batch file

@echo off

cd lib

CMD /C "mvn install:install-file -Dfile=./jquantlib-0.2.4.jar -DgroupId=org.jquantlib -DartifactId=jquantlib -Dversion=0.2.4 -Dpackaging=jar"
CMD /C "mvn install:install-file -Dfile=./jquantlib-helpers-0.2.4.jar -DgroupId=org.jquantlib -DartifactId=jquantlib-helpers -Dversion=0.2.4 -Dpackaging=jar"
CMD /C "mvn install:install-file -Dfile=./jquantlib-samples-0.2.4-ubber.jar -DgroupId=org.jquantlib -DartifactId=jquantlib-ubber -Dversion=0.2.4 -Dpackaging=jar"
CMD /C "mvn install:install-file -Dfile=./jquantlib-samples-0.2.4.jar -DgroupId=org.jquantlib -DartifactId=jquantlib-samples -Dversion=0.2.4 -Dpackaging=jar"

CMD /C "mvn install:install-file -Dfile=./ta-lib-0.4.0.jar -DgroupId=com.tictactec -DartifactId=ta-lib -Dversion=0.4.0 -Dpackaging=jar"

You can use a similar script file on other systems.

link|improve this answer
feedback

I believe the system dependency approach shouldn't be used unless you don't have any other choice, and that's because you're loosing the whole 'build portability thing' here. Of course you can store your jars in your source control system together with your project's source files, but I don't think its a good approach neither...

Using only install:install-file is not good enough - this would indeed deploy the jars in the proper format into your local repository, but what happens when you'll move to another computer and start to build your project there? You will need to make this once more.

So, If you don't want to install nexus/artifactory (which is the best solution, I believe), you probably should create an another repository (just in a file system on some of your servers), and deploy the jars there (you can use mvn install:install-file as was suggested here, and then just copy the whole tree). Now you can configure apache web server and access the directory with all your jars via http. I don't believe its better then nexus/artifactory approach, but it can be a little be easier to do if you're familiar with apache web server. In order to get your maven aware about this new repository you'll need to edit the %MAVEN_HOME%\conf\settings.xml file

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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