Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How compile a maven project using different jdk with profiles? I would like specify different profiles in my POM file, and run command mvn with profile name. Help me, I'm novice. A complete example would be ideal.

Thanks.

share|improve this question

1 Answer

You can use toolchains - see the Guide to Using Toolchains

Basically this is what you do:

  • prepare your JDKs in ${user.home}/.m2/toolchains.xml file
  • in the pom.xml, for each desired JDK, create a profile which invokes maven-toolchain-plugin from phase validate (goal toolchain)

That's it.

Note that toolchains work only with certain "toolchains-aware" plugins.

(unfortunately I have no complete example right now)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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