Skip to content

Commit

Permalink
Fix warning for zstd-jni
Browse files Browse the repository at this point in the history
  • Loading branch information
barchetta committed Apr 8, 2024
1 parent dcf9e3f commit 16b76ea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions integrations/graal/native-image-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
<maven.javadoc.skip>true</maven.javadoc.skip>
<version.lib.lz4>1.3.0</version.lib.lz4>
<version.lib.jboss-marshalling>2.1.1.Final</version.lib.jboss-marshalling>
<version.lib.zstd-jni>1.5.6-2</version.lib.zstd-jni>
</properties>

<dependencies>
Expand Down Expand Up @@ -82,6 +83,11 @@
<artifactId>jboss-marshalling</artifactId>
<version>${version.lib.jboss-marshalling}</version>
</dependency>
<dependency>
<groupId>com.github.luben</groupId>
<artifactId>zstd-jni</artifactId>
<version>${version.lib.zstd-jni}</version>
</dependency>

</dependencies>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ Args=--no-fallback \
--features=io.helidon.integrations.graal.nativeimage.extension.HelidonReflectionFeature \
--initialize-at-run-time=io.netty.util.internal.logging.Log4JLogger \
--initialize-at-run-time=io.netty.handler.codec.compression.Lz4XXHash32 \
--initialize-at-run-time=io.netty.handler.codec.compression.ZstdDecoder \
--initialize-at-run-time=io.netty.handler.codec.compression.ZstdConstants \
--initialize-at-build-time=io.helidon \
--initialize-at-build-time=io.netty \
--initialize-at-build-time=org.yaml.snakeyaml \
Expand Down

0 comments on commit 16b76ea

Please sign in to comment.