Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

maven test class

mvn install -Dmaven.test.skip=true

# or

mvn install -DskipTests

# If -Dmaven.test.skip=true (or simply -Dmaven.test.skip) is specified, 
# the test-jars aren't built, and any module that relies on them will 
# fail its build.

# In contrast, when you use -DskipTests, Maven does not run the tests, 
# but it does compile them and build the test-jar, making it available 
# for the subsequent modules.
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #maven #test #class
ADD COMMENT
Topic
Name
6+5 =