0
votes
1answer
26 views

In Maven is there a way to say, “Bring in B instead of A”?

I have a project that has N dependencies that all have a dependency on some library A (say commons-logging) and I want to use some other library B (say jcl-over-slf4j, which is billed as a replacement ...
2
votes
1answer
126 views

spring dependencies

I just found one daunting thing. There are two versions of spring dependency coordinates. Project has dependencies on spring mvc and spring flow. There are two parallel sets of dependencies. Spring ...
0
votes
1answer
267 views

maven version dependency injection to sub modules

I purchased the 'Apache Maven 3 Cookbook' and I'm trying to learn on adding dependencies to my maven projects. my main project pom.xml: <?xml version="1.0" encoding="UTF-8"?> <project ...
4
votes
3answers
709 views

Maven seems to be pulling in jars that have test scope

I have a war module that is being built and is including a few shrinkwrap jars that it's not supposed to. Namely: WEB-INF/lib/shrinkwrap-api-1.0.0.jar ...
0
votes
1answer
136 views

Maven - Dependency Resolution Failed, Package exists in local repo

I am using maven-gae-plugin from http://code.google.com/p/maven-gae-plugin/ to create a multi-module project using inheritance (parent-project reference) The structure that I have is as below: | `-- ...
1
vote
3answers
186 views

Which pom dependency should I use for jar commons-lang.jar

How do I know which version of a pom dependency I should use if its version is not in the jar name. For example the jar commons-lang.jar, what version of the pom dependency should I use ? Here are ...
9
votes
2answers
2k views

Use dependencies from Eclipse p2 repository in a regular Maven build?

I'd like to use dependencies from a remote Eclipse p2 repository in a "regular" Maven 3 build (e.g. JAR or WAR packaging) - all without converting the p2 repo to a local Maven repo (which is what ...
1
vote
3answers
604 views

Maven exclusions best practices

I'm using Maven2. When I look at the output of mvn dependency:tree -Dverbose I see lots of: [INFO] +- org.springframework:spring-orm:jar:3.0.5.RELEASE:compile [INFO] | +- ...
9
votes
2answers
2k views

How to break a maven build when there is a dependency conflict?

I ran mvn dependency:tree for a project and I saw output like the following: [INFO] my:project:jar:1.0.0-SNAPSHOT [INFO] +- some.other:library:jar:2.0.0:compile [INFO] | \- ...