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

I have some Maven plugins configured in my pom.xml. I only want to execute these plugins if the tests are being run (tests may be skipped using either -Dmaven.test.skip=true or -DskipTests).

One of these plugins is bound to the process-classes build lifecycle phase and the other is bound to the pre-integration-test phase.

share|improve this question
I had a similar situation where I wanted to have a plug-in (tomcat7-maven-plugin) available for use in local development, but not referenced in a CI build (TeamCity, using only approved artifacts from an Artifactory repo). I added a profile element with id=localhost-server as suggested by @tenshi, but excluded the activation element. I then added an activeProfile element to my settings.xml so that it would only be active in my local environment. – Ryan Ransford Apr 8 at 14:13

1 Answer

up vote 12 down vote accepted

You can use profile with special activation conditions like this:

<project>
  ...
  <profiles>
    <profile>
      <id>my-test-plugins</id>

      <activation>
        <property><name>!maven.test.skip</name></property>
        <property><name>!skipTests</name></property>
      </activation>
      <build>
        <plugins>

      <!-- define your plugins here -->

        </plugins>
      </build>
    </profile>
  </profiles>
</project>

More info you can find here:

http://books.sonatype.com/mvnref-book/reference/profiles-sect-activation.html

share|improve this answer
Thanks for the link to the Maven book. Really helpful to learn beyond what was asked/answered here. – Marcel Stör Jul 28 '12 at 11:23

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.