From 4863ae7d3d7bee7939aabd0cd1f6c066e2b5ce50 Mon Sep 17 00:00:00 2001 From: Artem Getmanskii Date: Mon, 23 Dec 2024 13:33:09 +0300 Subject: [PATCH] update eo-maven-plugin readme "disabling ITs" --- eo-maven-plugin/README.md | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) 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 ```