Skip to content

Commit

Permalink
update eo-maven-plugin readme "disabling ITs"
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemGet committed Dec 23, 2024
1 parent a17b9d3 commit 4863ae7
Showing 1 changed file with 9 additions and 14 deletions.
23 changes: 9 additions & 14 deletions eo-maven-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<plugins>
...
<plugin>
<artifactId>maven-invoker-plugin</artifactId>
<version>0.49.2</version>
<configuration>
<skipInstallation>true</skipInstallation>
<skipInvocation>true</skipInvocation>
</configuration>
</plugin>
...
</plugins>
```shell
mvn clean install -PskipITs
```

or by setting skipITs property:

```shell
mvn clean install -DskipITs
```

0 comments on commit 4863ae7

Please sign in to comment.