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

I am creating a maven 2 build for a project and I came up with profiles since the build has to be created for both different locations (say Berlin, Paris, North Pole) and different environment (Development, Production). Those are specified via properties. So for "North Pole" "DEV" I do:

-Dlocation=NorthPole -Denvironment=DEV

Now I would like to acivate my porfile based on both these properties, not just one. So I tried following:

<profiles>
  <profile>
    <id>NOrth Pole DEV</id>
    <activation>
      <property>
        <name>location</name>
        <value>NorthPole</value>
      </property>
      <property>
        <name>environment</name>
        <value>DEV</value>
      </property>
    </activation>
    ... <!-- Set some North Pole DEV specific stuff -->
  </profile>
</profiles>

This doesn't work, maven expect to see at most one <property> element there.

Please note I have another use for the properties as well so making it single property locationEnvof value NorthPole-DEV isn't what I want to have.

So is there any way or workaround or whatever else how to activate an profile based on combination of properties?

share|improve this question

4 Answers

up vote 5 down vote accepted

why not using profile directly like:

<profiles>
   <profile>
    <id>north-pole</id>
    <activation>
      <activeByDefault>false</activeByDefault>
    </activation>
    ....
  </profile>
   <profile>
    <id>dev</id>
    <activation>
      <activeByDefault>false</activeByDefault>
    </activation>
    ....
  </profile>
</profiles>

Now you can activate the profiles by command line.

mvn -Pdev,north-pole ...
share|improve this answer
Sure but if I have config file NorthPole-DEV.xml and NorthPole-PROD how would I know which one to use in your scenario? I need to decide based on both location and environment and act upon them – Jan Zyka Mar 24 '11 at 11:27
Inside the profile you can set properties and use the later. – khmarbaise Mar 24 '11 at 12:12
1  
Since I was converting the ANT build into maven I probably was too fixed on using commandline properties. It turned out that it is really better to do it via profiles, set required properties in them and forget the properties at all. Sorry for missleading question. Marking this as correct answer. – Jan Zyka Mar 25 '11 at 9:31
Could you clarify what should be expected if the 2 profiles define different values for the same property? Which one is taken? – Ivaylo Slavov May 11 '12 at 7:00
That does not solve the problem because second property will trigger the profile even thought first is not set (it matters in my case). -1 for typical useless Maven advice (eg. "do it Maven way and make everything dumb, bloated & unmaintainable"). – woky Aug 9 '12 at 15:00

I am afraid there is no good solution to your problem (unless there are new Maven features I am not aware of).

In theory, you could introduce a derived property whose value is concatenated from the two properties you listed. However, the problem is that profiles are evaluated before properties defined in the pom, so such a derived property can't be used to activate a profile :-(

The best workaround I could think of for a similar problem was to activate the profile explicitly, and put the different combinations of command line parameters into separate batch/script files to make execution simpler and avoid mistyping issues.

share|improve this answer
You are right, it turned out that going directly with profiles and set the properties in them (just as if they were set via commandline) will be the best option here. Thanks for answer anyway! – Jan Zyka Mar 25 '11 at 9:32

I believe you can do something like this

<properties>
        <env>dev</env>
        <location>North Pole</location>
    </properties>

<profiles>
        <!-- dev North Profile -->
        <profile>
            <id>dev North Pole</id>
            <activation>
                <activeByDefault>true</activeByDefault>
            </activation>
        </profile>
        <!-- qa North Profile -->
        <profile>
            <id>qa North Pole</id>
            <properties>
                         <env>qa</env>
                             <location>North Pole</location>
            </properties>
        </profile>

    </profiles>
<build>
do profile specific stuff here
</build>

Of couse, to activate a profile you can add in the command '-P=dev North Pole'

share|improve this answer
Hm, but this is for the case there is North Pole only. In such case I wouldn't need a property for it at all. right? :) There are other locations as well sa described in the question. – Jan Zyka Mar 24 '11 at 11:03
Yes, you can add other profiles as per your requirement.Essentially, location and env properties are being set as per the profile selected, thus you won't need a separate properties file. – Prabhjot Mar 24 '11 at 11:18

khmarbaise's answer seems more elegant to me. To Jan's comment, you can refer to the file by appending the properites e.g. with profile dev, North Pole activated you can refer to NorthPole-dev.xml with ${location}-${env}.xml.

I had to post another reply as I'm not able to add comments to other's replies. :(

share|improve this answer
1  
well, you could have added this to your first answer instead :-) – Sean Patrick Floyd Mar 24 '11 at 12:11

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.