Skip to content
Snippets Groups Projects
Commit 0228d7b0 authored by Jan Zickermann's avatar Jan Zickermann
Browse files

OZG-6753 Exclude XtaClientITCase during verify

parent abd5cf63
Branches
No related tags found
No related merge requests found
...@@ -149,17 +149,24 @@ ...@@ -149,17 +149,24 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId> <artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<excludes>
<!--docker environment in der pipeline laeuft noch nicht-->
<exclude>**/XtaClientITCase.java</exclude>
</excludes>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Test.java</include>
<!--docker environment in der pipeline laeuft noch nicht-->
<!--include>**/*ITCase.java</include-->
</includes>
</configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.jacoco</groupId> <groupId>org.jacoco</groupId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment