Skip to content

Commit

Permalink
fix: run ui tests only with mvn profile
Browse files Browse the repository at this point in the history
  • Loading branch information
cmhulbert committed Dec 16, 2024
1 parent 4b9f1ca commit 962ca99
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -664,19 +664,17 @@
<filtering>true</filtering>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>**PainteraBaseViewTest**</excludes>
<excludes>**SplashScreenTest**</excludes>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**PainteraBaseViewTest**</exclude>
<exclude>**SplashScreenTest**</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down

0 comments on commit 962ca99

Please sign in to comment.