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 using to profiles: development and production

development should be active on default, production should be used when i am releasing.

In my pom.xml i have:

[...]
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.0-beta-9</version>
<configuration>
  <useReleaseProfile>false</useReleaseProfile>
  <goals>deploy</goals>
  <arguments>-Pproduction</arguments>
</configuration>
</plugin>
[...]
<profiles>
  <profile>
    <id>production</id>
    <properties>
      <profile.name>production</profile.name>
    </properties>
    [...]
  </profile>
  <profile>
    <id>development</id>
    <activation>
      <activeByDefault>true</activeByDefault>
    </activation>
    <properties>
    <profile.name>development</profile.name>
    </properties>
       [...]
  </profile>
[...]

It just does not work.
useReleaseProfiles doen't work either: http://jira.codehaus.org/browse/MRELEASE-459

development profile should be always active but not when running mvn release:perform How can you achieve this?

[UPDATE]: I have seen with the debug flag that my production profile is used, but development profile is used too, because it is activeByDefault. This cant be overridden by releaseProfile argument. It would be nice to force the release plugin to use only "production" profile

share|improve this question

3 Answers

up vote 7 down vote accepted

As of 20-Nov-2011, the maven-release-plugin v2.2.1's documentation encourages using the releaseProfiles configuration parameter to automatically invoke profiles during the release process.

http://maven.apache.org/plugins/maven-release-plugin/examples/perform-release.html

This is a better approach than manually invoking release profiles from the command-line. One reason, is because the profiles used in the release will be documented in the pom.xml and stored with the tagged code. This makes the build process easier to understand and easier to repeat later, exactly the same way the project was originally released.

Unfortunately, the maven-release-plugin has had a bug with the releaseProfiles feature since 2009. It appears that no attempt was ever made to fix it.

http://jira.codehaus.org/browse/MRELEASE-459

https://issues.apache.org/jira/browse/WINK-125

Until the bug is fixed, there is not much choice but specify release profiles from the command-line.

It is sad that such an important bug has not been fixed in two years. I guess this is the downside of free open-source software.

share|improve this answer
@editor, Its better to write that the bug has been fixed, here, as a comment. – Arun Jan 29 at 20:30

I think you should simply activate your profiles through a property.

<profiles>
  <profile>
    <id>production</id>
    <activation>
      <property>
        <name>build</name>
        <value>release</value>
      </property>
    </activation>
    [...]
  </profile>
  <profile>
    <id>development</id>
    <activation>
      <property>
        <name>build</name>
        <value>develop</value>
      </property>
    </activation>
    [...]
  </profile>
<profiles>

Do your builds by executing something like this

mvn -Dbuild=develop package
mvn -Dbuild=develop test

mvn -Dbuild=release release:prepare
mvn -Dbuild=release release:perform
share|improve this answer
yes, i did already know that it is possible to set the profile like this. But this way it can be forgotton. If you forget it, the released package would contain wrong configuration files and deployment would fail. I would like to enforce the release plugin to use only the given profile. – Janning Jul 25 '10 at 15:14
It can't be forgotten if you define some properties in the profiles which are required and used by the release plugin. – splash Jul 26 '10 at 12:36
I do not understand your last comment. Could you please explain it to me? – Janning Jul 30 '10 at 21:50

If you check "Introduction to Build Profiles", "Deactivating a profile":

mvn groupId:artifactId:goal -P !profile-1,!profile-2

I guess you could use this to deactivate your default profile?

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.