NX01: Set all unit tests to headless and disable 2 offenders
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 1m33s

This commit is contained in:
Willem Cazander 2026-01-29 19:04:04 +01:00
parent ce544764a4
commit 67dd3e4628
4 changed files with 19 additions and 1 deletions

14
pom.xml
View file

@ -527,6 +527,11 @@
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.4</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
@ -535,6 +540,15 @@
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<java.awt.headless>true</java.awt.headless>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
<profiles>