I am new to Maven. I am trying to package my project. But, it automatically runs the tests. The tests insert some content in the database. This is not what I want, I need to avoid running tests while package the application. Anybody knows how run the package with out test?

Reply is highly appreciable.

Thanks.

link|improve this question

7  
A Unit-Test should consist of the following 4 phases: Initialization, Test, Verification and Teardown. Maybe you should adjust your tests and add an according teardown/cleanup of your database or you should use a separate database instance, not packaged with your jar file, for running your tests on. – coding.mof Sep 17 '11 at 16:00
It seems that your tests are "heavy" so you don't want to execute them. But it's a bad practice. Maybe some frameworks as DBUnit may help you ? Or you can revert database changes at the end of the test? – Mickael Marrache Nov 27 '11 at 20:32
feedback

7 Answers

up vote 7 down vote accepted

Run maven with -Dmaven.test.skip=true

link|improve this answer
1  
thanks for ur immediate reply,am running from eclipse, where i add the command -Dmaven.test.skip=true? – vks Sep 17 '11 at 15:59
2  
I've never launched mvn from eclipse, but in the Run Configuration window where you configure maven's targets and profiles, there is a 'Skip Test' checkbox. Maybe that will do the trick. – Giorgos Dimtsas Sep 17 '11 at 16:06
feedback

You can pass the maven.test.skip flag as a JVM argument, to skip running tests when the package phase (and the previous ones in the default lifecycle) is run:

mvn package -Dmaven.test.skip=true

You can also pass the skipTests flag alone to the mvn executable. If you want to include this information in your POM, you can create a new profile where you can configure the maven-surefire-plugin to skip tests.

link|improve this answer
feedback

you can add this plugin configuration to your pom if you do not want to set command line arg:

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-surefire-plugin</artifactId>
  <configuration>
    <skipTests>true</skipTests>
  </configuration>
</plugin>
link|improve this answer
feedback

You only have to provide

-Dmaven.test.skip

No longer need the '=true' there.

link|improve this answer
feedback

Tests should always[1] run before package. If you need to turn off the tests, you're doing something wrong. In other words, you're trying to solve the wrong problem. Figure out what your problem really is, and ask that question. It sounds like it's database-related.

[1] You might skip tests when you need to quickly generate an artifact for local, development use, but in general, creating an artifact should always follow a successful test run.

link|improve this answer
feedback

You are, obviously, doing it the wrong way. Testing is an important part of pre-packaging. You shouldn't ignore or skip it, but rather do it the right way. Try changing the database to which it inserts the data(like test_db). It may take a while to set it up. And to make sure this database can be used forever, you should delete all the data by the end of tests. JUnit4 has annotations which make it easy for you. Use @Before, @After @Test annotations for the right methods. You need to spend sometime on it, but it will be worth it!

link|improve this answer
feedback

Note that -Dmaven.test.skip prevents Maven building the test-jar artifact.

If you'd like to skip tests but create artifacts as per a normal build use:

-Dmaven.test.skip.exec
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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