Skip to content

Commit

Permalink
Replace deprecated systemProperties.
Browse files Browse the repository at this point in the history
The recommended replacement is systemPropertyVariables, documented [here](https://maven.apache.org/surefire/maven-surefire-plugin/examples/system-properties.html).
  • Loading branch information
nakulj committed Jul 8, 2024
1 parent 1bc2233 commit 43a1c2c
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions amazon-kinesis-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -228,16 +228,10 @@
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
</excludes>
<systemProperties>
<property>
<name>sqlite4java.library.path</name>
<value>${sqlite4java.libpath}</value>
</property>
<property>
<name>awsProfile</name>
<value>${awsProfile}</value>
</property>
</systemProperties>
<systemPropertyVariables>
<sqlite4java.library.path>${sqlite4java.libpath}</sqlite4java.library.path>
<awsProfile>${awsProfile}</awsProfile>
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 43a1c2c

Please sign in to comment.