Skip to content

Commit d0516e3

Browse files
committed
[pom] Skip tests when on windows
1 parent b91017e commit d0516e3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

pom.xml

+20
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,26 @@
136136
</plugins>
137137
</build>
138138
</profile>
139+
140+
<profile>
141+
<id>windows</id>
142+
<activation>
143+
<os>
144+
<family>windows</family>
145+
</os>
146+
</activation>
147+
<build>
148+
<plugins>
149+
<plugin>
150+
<groupId>org.apache.maven.plugins</groupId>
151+
<artifactId>maven-surefire-plugin</artifactId>
152+
<configuration>
153+
<skipTests>true</skipTests>
154+
</configuration>
155+
</plugin>
156+
</plugins>
157+
</build>
158+
</profile>
139159
</profiles>
140160

141161
</project>

0 commit comments

Comments
 (0)