We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b80a841 + f07f7c0 commit f15e9faCopy full SHA for f15e9fa
integration-tests/oidc-dev-services/pom.xml
@@ -100,9 +100,6 @@
100
<plugin>
101
<artifactId>maven-surefire-plugin</artifactId>
102
</plugin>
103
- <plugin>
104
- <artifactId>maven-failsafe-plugin</artifactId>
105
- </plugin>
106
107
<groupId>io.quarkus</groupId>
108
<artifactId>quarkus-maven-plugin</artifactId>
@@ -118,4 +115,18 @@
118
115
</plugins>
119
116
</build>
120
117
+ <profiles>
+ <!-- On GitHub Actions, nested containers are not available on Windows -->
+ <profile>
121
+ <activation>
122
+ <os>
123
+ <family>windows</family>
124
+ </os>
125
+ </activation>
126
+ <properties>
127
+ <skipTests>true</skipTests>
128
+ </properties>
129
+ </profile>
130
+ </profiles>
131
+
132
</project>
0 commit comments