From d93910edca35da097cf76e4fd68141a38d3a68a1 Mon Sep 17 00:00:00 2001 From: Daniel Kec Date: Tue, 5 May 2020 18:02:22 +0200 Subject: [PATCH] Enable reflection init of NioSocketChannel with native image (#1722) * Enable reflection init of NioSocketChannel with native image Signed-off-by: Daniel Kec --- .../helidon-webclient/reflect-config.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 webclient/webclient/src/main/resources/META-INF/native-image/io.helidon.webclient/helidon-webclient/reflect-config.json diff --git a/webclient/webclient/src/main/resources/META-INF/native-image/io.helidon.webclient/helidon-webclient/reflect-config.json b/webclient/webclient/src/main/resources/META-INF/native-image/io.helidon.webclient/helidon-webclient/reflect-config.json new file mode 100644 index 00000000000..7e7050a4eae --- /dev/null +++ b/webclient/webclient/src/main/resources/META-INF/native-image/io.helidon.webclient/helidon-webclient/reflect-config.json @@ -0,0 +1,8 @@ +[ + { + "name": "io.netty.channel.socket.nio.NioSocketChannel", + "methods": [ + { "name": "", "parameterTypes": [] } + ] + } +] \ No newline at end of file