This is an automated email from the ASF dual-hosted git repository.
bowenliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new ad53eefe4b [KYUUBI #6808] [BUILD]Replace systemProperties with
systemPropertyVariables in maven-surefire-plugin
ad53eefe4b is described below
commit ad53eefe4b6c01697d5ac88200db4785507a176c
Author: chengpeiming <[email protected]>
AuthorDate: Wed Nov 13 22:41:23 2024 +0800
[KYUUBI #6808] [BUILD]Replace systemProperties with systemPropertyVariables
in maven-surefire-plugin
# :mag: Description
## Issue References ๐
## Describe Your Solution ๐ง
Fix the warning of `maven-surefire-plugin` that show `Parameter
'systemProperties' is deprecated. Use systemPropertyVariables instead.` in the
build.
## Types of changes :bookmark:
- [ ] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing
functionality to change)
## Test Plan ๐งช
#### Behavior Without This Pull Request :coffin:
#### Behavior With This Pull Request :tada:
#### Related Unit Tests
---
# Checklist ๐
- [x] This patch was not authored or co-authored using [Generative
Tooling](https://www.apache.org/legal/generative-tooling.html)
**Be nice. Be informative.**
Closes #6808 from pionCham/use-systemPropertyVariables.
Closes #6808
668bfe252 [chengpeiming] Replace systemProperties with
systemPropertyVariables in maven-surefire-plugin
0e74b4725 [chengpeiming] Revert "Replace systemProperties with
systemPropertyVariables"
797384a5b [chengpeiming] Replace systemProperties with
systemPropertyVariables
Authored-by: chengpeiming <[email protected]>
Signed-off-by: Bowen Liang <[email protected]>
---
pom.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pom.xml b/pom.xml
index 07976fb23a..5cbdee5ee7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1449,7 +1449,7 @@
<environmentVariables>
<KYUUBI_WORK_DIR_ROOT>${project.build.directory}/work</KYUUBI_WORK_DIR_ROOT>
</environmentVariables>
- <systemProperties>
+ <systemPropertyVariables>
<log4j.ignoreTCL>true</log4j.ignoreTCL>
<log4j2.configurationFile>src/test/resources/log4j2-test.xml</log4j2.configurationFile>
<java.io.tmpdir>${project.build.directory}/tmp</java.io.tmpdir>
@@ -1459,7 +1459,7 @@
<sun.security.krb5.debug>false</sun.security.krb5.debug>
<kyuubi.operation.log.dir.root>${project.build.directory}/server_operation_logs</kyuubi.operation.log.dir.root>
<kyuubi.engine.operation.log.dir.root>${project.build.directory}/engine_operation_logs</kyuubi.engine.operation.log.dir.root>
- </systemProperties>
+ </systemPropertyVariables>
</configuration>
</plugin>
<!-- enable scalatest -->