Maven test

C

cyber Boy

Hy,

I can't compile test classes without its execution ?
Do you have any idea ?

For example:
mvn -Dmaven.test.skip install // it doesn't add test classes in a package


Regards,
cyber1boy
 
O

Owen Jacobson

Hy,

I can't compile test classes without its execution ?
Do you have any idea ?

For example:
mvn -Dmaven.test.skip install  // it doesn't add test classes in a package

The test-compile phase (mvn test-compile) is, by default, bound to the
compile:testCompile plugin task, which in turn compiles src/test/java
to target/test-classes. Tests are never included in the final build
output, but you can also have Maven create a JAR of the tests using
the jar:test-jar plugin goal. See <http://maven.apache.org/plugins/
maven-jar-plugin/test-jar-mojo.html> and <http://maven.apache.org/
plugins/maven-compiler-plugin/testCompile-mojo.html> for details.

-o
 
C

cyber Boy

Yes, the problem is that "mvn test-compile" compiles and doesn't create
package.
I will try with jar:test-jar plugin goal.

Thank you.


Hy,

I can't compile test classes without its execution ?
Do you have any idea ?

For example:
mvn -Dmaven.test.skip install // it doesn't add test classes in a package

The test-compile phase (mvn test-compile) is, by default, bound to the
compile:testCompile plugin task, which in turn compiles src/test/java
to target/test-classes. Tests are never included in the final build
output, but you can also have Maven create a JAR of the tests using
the jar:test-jar plugin goal. See <http://maven.apache.org/plugins/
maven-jar-plugin/test-jar-mojo.html> and <http://maven.apache.org/
plugins/maven-compiler-plugin/testCompile-mojo.html> for details.

-o
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top