Skip to content

Commit

Permalink
[pom] Skip tests when on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
hazendaz committed Jan 11, 2025
1 parent b91017e commit d0516e3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,26 @@
</plugins>
</build>
</profile>

<profile>
<id>windows</id>
<activation>
<os>
<family>windows</family>
</os>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>

0 comments on commit d0516e3

Please sign in to comment.