Skip to content

Commit

Permalink
Fixing Maven build and tests
Browse files Browse the repository at this point in the history
  • Loading branch information
voidmain committed Sep 7, 2024
1 parent 2ae58dd commit c8102ed
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
</scm>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>

<!-- Testing Dependencies -->
Expand Down Expand Up @@ -101,14 +101,16 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M7</version>
<version>3.5.0</version>
<configuration>
<argLine>--add-exports java.base/sun.security.x509=ALL-UNNAMED --add-exports java.base/sun.security.util=ALL-UNNAMED</argLine>
<properties>
<property>listener</property>
<value>io.fusionauth.http.BaseTest$TestListener</value>
<property>
<name>listener</name>
<value>io.fusionauth.http.BaseTest$TestListener</value>
</property>
</properties>
<excludedGroups>performance</excludedGroups>
<excludedGroups>performance,timeouts</excludedGroups>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit c8102ed

Please sign in to comment.