[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.technology.m2e] Use local libraries/dependencies?
|
I have installed different versions of some libraries into my local
repository:
C:\Users\bob\.m2\repository\local-runtime-lib
I have used the following command:
call mvn
install:install-file -DgroupId=local-runtime-lib -DartifactId=myapi -Dversion=2.5
-Dpackaging=jar -Dfile=myapi.jar -DgeneratePom=true
A few months ago I installed an older version using:
call mvn
install:install-file -DgroupId=local-runtime-lib -DartifactId=myapi -Dversion=2.2
-Dpackaging=jar -Dfile=myapi.jar -DgeneratePom=true
I now have both versions in my local repository. But when I search for the
dependencies from eclipse I can only see the 2.2 version. Why does it not
show both the 2.2 version and the 2.5 version?