Skip to content

Commit

Permalink
Merge pull request quarkusio#38193 from karesti/infinispan-test-deplo…
Browse files Browse the repository at this point in the history
…y-skip-testcontainers-flag

Infinispan Client, tests skip if test-containers is not set
  • Loading branch information
gsmet authored Jan 17, 2024
2 parents a1f9b15 + 3cb8b87 commit 8bc6ddb
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions extensions/infinispan-client/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,39 @@
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>test-infinispan</id>
<activation>
<property>
<name>test-containers</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<skip>false</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<!-- Skip the tests on Windows -->
<profile>
<id>skip-tests-windows</id>
Expand Down

0 comments on commit 8bc6ddb

Please sign in to comment.