aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core_test/integration_test/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'jdisc_core_test/integration_test/pom.xml')
-rw-r--r--jdisc_core_test/integration_test/pom.xml9
1 files changed, 6 insertions, 3 deletions
diff --git a/jdisc_core_test/integration_test/pom.xml b/jdisc_core_test/integration_test/pom.xml
index e31fa122232..b1cebcdfcc6 100644
--- a/jdisc_core_test/integration_test/pom.xml
+++ b/jdisc_core_test/integration_test/pom.xml
@@ -8,10 +8,10 @@
<parent>
<groupId>com.yahoo.vespa.jdisc_core</groupId>
<artifactId>integration-test-parent</artifactId>
- <version>6-SNAPSHOT</version>
+ <version>7-SNAPSHOT</version>
</parent>
<artifactId>integration_test</artifactId>
- <version>6-SNAPSHOT</version>
+ <version>7-SNAPSHOT</version>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<dependencies>
@@ -243,8 +243,11 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <!-- Allow installing fragment bundles, see felix.framework:ExtensionManager.addExtensionBundle -->
+ <!-- java.lang + java.net are opened to avoid "WARNING: Illegal reflective access ... "-->
+ <!-- jdk.internal.loader is opened to allow installing extension bundles, see felix.framework:ExtensionManager.addExtensionBundle -->
<argLine>
+ --add-opens=java.base/java.lang=ALL-UNNAMED
+ --add-opens=java.base/java.net=ALL-UNNAMED
--add-opens=java.base/jdk.internal.loader=ALL-UNNAMED
</argLine>
</configuration>