vote up 7 vote down star
2

Is it possible to have a different set of dependencies in a maven pom.xml file for different profiles?

e.g.

mvn -P debug
mvn -P release

I'd like to pick up a different dependency jar file in one profile that has the same class names and different implementations of the same interfaces.

flag

77% accept rate
This can be used when targeting different web servers. For example, when building for a JavaEE 5 server, which offers libs such as JAXB, which you should not include in your war file, versus building for a JavaEE 1.4 server, where you should include the JAXB jar. – Leonel Oct 16 at 14:06

2 Answers

vote up 10 vote down check

To quote the maven documentation on this:

A profile element contains both an optional activation (a profile trigger) and the set of changes to be made to the POM if that profile has been activated. For example, a project built for a test environment may point to a different database than that of the final deployment. Or dependencies may be pulled from different repositories based upon the JDK version used.

(Emphasis is mine)

Just put the dependency for the release profile inside the profile declaration itself and do the same for debug.

<profiles>
    <profile>
    	<id>debug</id>
    	…
    	<dependencies>
    		<dependency>…</dependency>
    	</dependencies>
    	…
    </profile>
    <profile>
    	<id>release</id>
    	…
    	<dependencies>
    		<dependency>…</dependency>
    	</dependencies>
    	…
    </profile>
</profiles>
link|flag
vote up 0 vote down

Your groupId, artifactId should be tokenized in your profiles as properties and you can move your dependencies to the generic section.

link|flag

Your Answer

Get an OpenID
or

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