Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix [JDK17]kudu:integration test failed in native mode #3340 #3341

Merged
merged 1 commit into from
Dec 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 5 additions & 18 deletions integration-tests/kudu/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
<name>Camel Quarkus :: Integration Tests :: Kudu</name>
<description>Integration tests for Camel Quarkus Kudu extension</description>

<properties>
<!-- This is to allow the "deep reflection" we do in KuduInfrastructureTestHelper -->
<argLine>--add-opens java.base/java.net=ALL-UNNAMED</argLine>
</properties>

<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down Expand Up @@ -98,24 +103,6 @@
</plugins>
</build>
</profile>
<!-- Required by KuduInfrastructureTestHelper.overrideTabletServerHostnameResolution -->
<profile>
<id>jdk16-workarounds</id>
<activation>
<jdk>[16,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>--add-opens java.base/java.net=ALL-UNNAMED</argLine>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>virtualDependencies</id>
<activation>
Expand Down