Skip to content

Commit 14fc741

Browse files
authored
Correct codec-native-quic Fragment-Host (#16015)
Motivation: The way native library loading works in OSGi is by attaching the native jar as a fragment to the corresponding classes bundle. Unfortunately codec-native-quic contains a typo, so the attachment does not work. Modification: Correct the fragmentHost to point to 'io.netty.codec-classes-quic'. Result: Fixes #16006. Signed-off-by: Robert Varga <[email protected]> Signed-off-by: Robert Varga <[email protected]>
1 parent caa07bb commit 14fc741

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codec-native-quic/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<javaModuleNameWithClassifier>${javaModuleName}.${javaModuleNameClassifier}</javaModuleNameWithClassifier>
3333
<fallbackModuleName>io.netty.codec.quic</fallbackModuleName>
3434
<javaModuleName>${fallbackModuleName}.${javaModuleNameClassifier}</javaModuleName>
35-
<fragmentHost>io.netty.netty-codec-classes-quic</fragmentHost>
35+
<fragmentHost>io.netty.codec-classes-quic</fragmentHost>
3636
<logging.config>${project.basedir}/../codec-native-quic/src/test/resources/logback-test.xml</logging.config>
3737
<nativeSourceDirectory>${project.basedir}/src/main/c</nativeSourceDirectory>
3838
<fallbackOutputDirectory>${project.build.directory}/fallback-classes</fallbackOutputDirectory>

0 commit comments

Comments
 (0)