i was wondering if it's possible to configure run as maven install in eclipse to skip unit tests, if such thing is doable, then please tell me how to do it, thanks in advance.

link|improve this question

72% accept rate
feedback

5 Answers

up vote 2 down vote accepted
  1. Ensure Maven is configured for your project
  2. Right-click on your project
  3. Go to 'Run As'
  4. Select 'Run Configurations'
  5. In the left-hand column, right-click 'Maven Build' and select 'New'
  6. Select the base directory (the project) you want to build from
  7. Write 'install' and any other goals you want in the 'Goals' field
  8. Click the 'Skip Tests' radio button
  9. Click Run!

Hope that helps.

link|improve this answer
this worked very fine but any ideas how to add this new configuration to the Run As menu instead of running it from run configuration ? – fresh_dev Jan 19 at 14:53
I'm glad it worked - If that's possible I'm not aware how. I have to go into the Run Configuration dialog every time I want to run a custom run configuration. – Tom Elliott Jan 19 at 15:17
feedback

It depends on maven test plugin that you use. You can try add parameter -Dmaven.test.skip=true to your build configuration.

link|improve this answer
feedback

You can put the property maven.test.skip in a profile in your pom. And then you activate this profile in eclipse in the project properties of maven in eclipse.

link|improve this answer
feedback

accordig to maven's document you can write this in you pom.xml:

<project>


[...]
<build>
<plugins>
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.12</version>
    <configuration>
      <skipTests>true</skipTests>
    </configuration>
  </plugin>
</plugins>

link|improve this answer
feedback

At the Run configurations there is a Maven Build type of Run configuration. At that you could set up the standard Maven skipTests parameter.

link|improve this answer
can you please add steps for doing that, coz i can't figure it out ? – fresh_dev Jan 19 at 9:31
Open the Run menu, select Run configurations..., and there look on the left side for your existing maven configuration. Then on the right side you have a table for parameters, and add the maven.test.skip parameter with the value true. – Zoltán Ujhelyi Jan 19 at 10:39
feedback

Your Answer

 
or
required, but never shown

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