summaryrefslogtreecommitdiffstats
path: root/rulemgt/pom.xml
diff options
context:
space:
mode:
authorGuangrong Fu <fu.guangrong@zte.com.cn>2023-10-30 18:20:49 +0800
committerGuangrong Fu <fu.guangrong@zte.com.cn>2023-10-30 20:01:03 +0800
commit4656c4f34b7eef4c91ecaddee5efc48644a3333b (patch)
tree799b49f651e5a9a8a233e49e5341b0525a6022f1 /rulemgt/pom.xml
parent3bf7c480269528b81886b6d240f70e173ddde6e8 (diff)
Updated Direct Dependencies and Removed oparent
Issue-ID: HOLMES-633 Signed-off-by: Guangrong Fu <fu.guangrong@zte.com.cn> Change-Id: Id61086b6eac746cd7752eeb8b2f60474bda6d024
Diffstat (limited to 'rulemgt/pom.xml')
-rw-r--r--rulemgt/pom.xml24
1 files changed, 19 insertions, 5 deletions
diff --git a/rulemgt/pom.xml b/rulemgt/pom.xml
index 29bf27c..6ecfe81 100644
--- a/rulemgt/pom.xml
+++ b/rulemgt/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- ~ Copyright 2017-2022 ZTE Corporation.
+ ~ Copyright 2017-2023 ZTE Corporation.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
@@ -41,11 +41,25 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>3.8.0</version>
+ <version>3.8.1</version>
<configuration>
- <source>8</source>
- <target>8</target>
- <release>11</release>
+ <source>17</source>
+ <target>17</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>3.1.2</version>
+ <configuration>
+ <argLine>
+ --add-opens=java.base/java.lang=ALL-UNNAMED
+ --add-opens=java.base/java.net=ALL-UNNAMED
+ --add-opens=java.base/java.util=ALL-UNNAMED
+ --add-opens=java.base/java.util.concurrent=ALL-UNNAMED
+ --add-opens=java.base/java.util.stream=ALL-UNNAMED
+ --add-opens=java.base/java.io=ALL-UNNAMED
+ --add-opens=java.base/java.lang.reflect=ALL-UNNAMED
+ </argLine>
</configuration>
</plugin>
<plugin>