Skip to content

Commit 373182c

Browse files
authored
Exclude Netty http3 to ensure Alpine musl support (#671)
1 parent 2e094b8 commit 373182c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,13 @@ dependencies {
9696
implementation 'com.kjetland:mbknor-jackson-jsonschema_2.13:1.0.39'
9797
implementation 'com.jayway.jsonpath:json-path:2.10.0'
9898
implementation 'org.apache.httpcomponents.client5:httpclient5:5.5.1'
99-
implementation 'io.projectreactor.netty:reactor-netty-http:1.3.0'
99+
implementation ('io.projectreactor.netty:reactor-netty-http:1.3.0') {
100+
// http3/quic is not functional on Alpine due to absence of glibc/ld-linux
101+
// Error loading shared library ld-linux-x86-64.so.2:
102+
// No such file or directory (needed by /tmp/libnetty_quiche42_linux_x86_641323735684306068308.so)
103+
exclude group: 'io.netty', module: 'netty-codec-http3'
104+
}
105+
implementation 'io.netty.incubator:netty-incubator-codec-native-quic:0.0.74.Final'
100106
implementation 'org.apache.maven:maven-artifact:3.9.11'
101107
implementation 'commons-codec:commons-codec:1.20.0'
102108
// for RFC5987 parsing of content-disposition filename*

0 commit comments

Comments
 (0)