Replace deprecated systemProperties.

The recommended replacement is systemPropertyVariables, documented [here](https://maven.apache.org/surefire/maven-surefire-plugin/examples/system-properties.html).
This commit is contained in:
Nakul Joshi 2024-07-08 13:55:35 -07:00
parent 1bc2233fd1
commit 43a1c2c1bf

View file

@ -228,16 +228,10 @@
<excludes> <excludes>
<exclude>**/*IntegrationTest.java</exclude> <exclude>**/*IntegrationTest.java</exclude>
</excludes> </excludes>
<systemProperties> <systemPropertyVariables>
<property> <sqlite4java.library.path>${sqlite4java.libpath}</sqlite4java.library.path>
<name>sqlite4java.library.path</name> <awsProfile>${awsProfile}</awsProfile>
<value>${sqlite4java.libpath}</value> </systemPropertyVariables>
</property>
<property>
<name>awsProfile</name>
<value>${awsProfile}</value>
</property>
</systemProperties>
</configuration> </configuration>
</plugin> </plugin>
<plugin> <plugin>