aboutsummaryrefslogtreecommitdiffstats
path: root/application/pom.xml
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2021-11-05 00:40:20 +0100
committergjoranv <gv@verizonmedia.com>2021-11-09 23:41:42 +0100
commit1f0f598d0a24b4b717a8639af5e387efc5fecf03 (patch)
tree6b7b8d214d08d7db7707823de2c02e2e2d88d6cd /application/pom.xml
parent55b3bcf006dc5f9e22d3f25a9e02954ba3cf69f9 (diff)
JDK 17: add-opens for LogFileHandler
Diffstat (limited to 'application/pom.xml')
-rw-r--r--application/pom.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/application/pom.xml b/application/pom.xml
index f990988c77e..61cea1a1826 100644
--- a/application/pom.xml
+++ b/application/pom.xml
@@ -180,6 +180,10 @@
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<forkCount>2</forkCount>
+ <!-- Illegal reflective access by LogFileHandler via com.yahoo.io.NativeIO -->
+ <argLine>
+ --add-opens=java.base/java.io=ALL-UNNAMED
+ </argLine>
</configuration>
</plugin>
<plugin>