I'm trying to activate a maven profile using a property defined inside pom.xml:

<project>
  [...]
  <properties>
    <run.it>true</run.it>
  </properties>
  [...]
  <profiles>
    <profile>
      <activation>
        <property><name>run.it</name></property>
      </activation>
      [...]
    </profile>
  </profiles>
  [...]
</project>

Apparently it doesn't work. However, activation works from the command line:

mvn -Drun.it

Is it "by design"? If it is, what is a possible workaround?

link|improve this question

feedback

4 Answers

Edit, complete rewrite, as i understand the question now.

See this forum post:

profile activation is based on SYSTEM properties. you cannot activate profiles based on properties defined in your pom you cannot activate profiles based on system properties defined after the build plan has started execution

link|improve this answer
Could you please review the question again? I'm trying to activate the profile with a property defined inside pom.xml, not in the command line. – yegor256 Apr 15 '11 at 12:19
indeed i missed this, see activeByDefault as M. Jessup told – Moritz Heuser Apr 15 '11 at 12:25
I changed my answer – Moritz Heuser Apr 15 '11 at 12:34
Thanks, now I understand that it is "by design". Can you suggest a workaround please? – yegor256 Apr 15 '11 at 12:48
feedback

What about using an activation like this

    <profile>
        <id>gwt</id>
        <activation>
            <file>
                <exists>uses-gwt.marker</exists>
            </file>
        </activation>

and adding the file 'uses-gwt.marker' into source control, right next to pom.xml. That gives all developers the same state and sort of allows an aspect-oriented pom. we're using this technique in the parent pom and put hte marker files in the childs svn. Not ideal, but works.

link|improve this answer
feedback

As Moritz Heuser explained, profile activation is based on system properties. However, you can try something like that:

<project>
  ...
  <properties>
    <run.it>true</run.it>
  </properties>
  ...
  <profiles>
    <profile>
      <activation>
        <activeByDefault>${run.it}</activeByDefault>
      </activation>
      ...
    </profile>
  </profiles>
  ...
</project>

The idea is to define the activeByDefault flag in the <properties>.

link|improve this answer
feedback

I think your question is similar to this one.

Activation of maven profile based on multiple properties

As mentioned, you can activate a profile and set various properties as per your requirement and use command mvn -Prun-it to set property to true .

<project>
  [...]

  [...]
  <profiles>
    <profile>
    <id>don't-run</id>
<properties>
    <run.it>false</run.it>
  </properties>


      [...]
    </profile>


    <profile>
    <id>run-it</id>
<properties>
    <run.it>true</run.it>
  </properties>

      [...]
    </profile>


  </profiles>
  [...]
</project>
link|improve this answer
Kindly review my question. I'm interested to turn the profile on/off from inside pom.xml, not from command line or settings.xml. – yegor256 Apr 15 '11 at 14:19
But how does it make any difference to you, can you elaborate please? Also, as mentioned by Moritz, activation is done based on system property and not by command line. See this reference maven.apache.org/guides/introduction/… – Prabhjot Apr 15 '11 at 14:26
feedback

Your Answer

 
or
required, but never shown

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