liry commented on code in PR #570:
URL: https://github.com/apache/maven-surefire/pull/570#discussion_r1112364956
##########
maven-failsafe-plugin/src/main/java/org/apache/maven/plugin/failsafe/IntegrationTestMojo.java:
##########
@@ -130,12 +130,24 @@
private boolean useFile;
/**
- * Set this to "true" to cause a failure if none of the tests specified in
-Dtest=... are run. Defaults to
+ * Set this to "true" to cause a failure if none of the tests specified in
-Dit.test=... are run. Defaults to
* "true".
*
* @since 2.12
+ * @deprecated Since 3.0.0-M8, use "failsafe.failIfNoSpecifiedTests"
instead.
*/
+ @Deprecated
@Parameter( property = "it.failIfNoSpecifiedTests", defaultValue = "true" )
+ private boolean failIfNoSpecifiedTestsDeprecated;
+
+ /**
+ * Set this to "true" to cause a failure if none of the tests specified in
-Dit.test=... are run. Defaults to
+ * "true".
+ * Replacing "it.failIfNoSpecifiedTests" to be consistent with surefire
plugin.
Review Comment:
Sorry, I somehow missed the first comment. Wording changed.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]