summaryrefslogtreecommitdiffstats
path: root/engine-d/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'engine-d/pom.xml')
-rw-r--r--engine-d/pom.xml22
1 files changed, 18 insertions, 4 deletions
diff --git a/engine-d/pom.xml b/engine-d/pom.xml
index 1ff46dc..140ef94 100644
--- a/engine-d/pom.xml
+++ b/engine-d/pom.xml
@@ -67,11 +67,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>