diff --git a/eo-maven-plugin/README.md b/eo-maven-plugin/README.md index cbebc9fd5a..de2c85c7db 100644 --- a/eo-maven-plugin/README.md +++ b/eo-maven-plugin/README.md @@ -149,19 +149,14 @@ Here `fibonacci` is the name of the desired integration test, `-DskipTests` is u It is sometime necessary to temporarily disable the integration tests (for example for introducing braking changes into plugin or EO runtime). This can be achieved by disabling `maven-invoker-plugin` -execution within `eo-maven-plugin/pom.xml`: +using profile: -```xml - - ... - - maven-invoker-plugin - 0.49.2 - - true - true - - - ... - +```shell +mvn clean install -PskipITs +``` + +or by setting skipITs property: + +```shell +mvn clean install -DskipITs ```