Skip to content

Commit db98ccc

Browse files
committed
Skip tests on unsupported platforms.
1 parent 5328132 commit db98ccc

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

binding/pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,31 @@
2424
<artifactId>binding</artifactId>
2525
<packaging>jar</packaging>
2626

27+
<profiles>
28+
<profile>
29+
<id>windows</id>
30+
<activation>
31+
<os>
32+
<family>Windows</family>
33+
</os>
34+
</activation>
35+
<properties>
36+
<maven.test.skip>true</maven.test.skip>
37+
</properties>
38+
</profile>
39+
<profile>
40+
<id>linux</id>
41+
<activation>
42+
<os>
43+
<family>Linux</family>
44+
</os>
45+
</activation>
46+
<properties>
47+
<maven.test.skip>true</maven.test.skip>
48+
</properties>
49+
</profile>
50+
</profiles>
51+
2752
<build>
2853
<plugins>
2954
<plugin>

0 commit comments

Comments
 (0)