• Home
  • Raw
  • Download

Lines Matching +full:netty +full:- +full:project

10     id "maven-publish"
16 description = "gRPC: Netty Shaded"
21 implementation project(':grpc-netty')
22 runtimeOnly libraries.netty.tcnative,
23 libraries.netty.tcnative.classes
24 runtimeOnly (libraries.netty.tcnative) {
26 classifier = "linux-x86_64"
29 runtimeOnly (libraries.netty.tcnative) {
31 classifier = "linux-aarch_64"
34 runtimeOnly (libraries.netty.tcnative) {
36 classifier = "osx-x86_64"
39 runtimeOnly (libraries.netty.tcnative) {
41 classifier = "osx-aarch_64"
44 runtimeOnly (libraries.netty.tcnative) {
46 classifier = "windows-x86_64"
49 runtimeOnly (libraries.netty.transport.epoll) {
51 classifier = "linux-x86_64"
54 runtimeOnly (libraries.netty.transport.epoll) {
56 classifier = "linux-aarch_64"
60 project(':grpc-testing-proto'),
61 project(':grpc-testing'),
63 shadow project(':grpc-netty').configurations.runtimeClasspath.allDependencies.matching {
64 it.group != 'io.netty'
78 include(project(':grpc-netty'))
79 include(dependency('io.netty:'))
81 exclude 'META-INF/maven/**'
82 relocate 'io.grpc.netty', 'io.grpc.netty.shaded.io.grpc.netty'
83 relocate 'io.netty', 'io.grpc.netty.shaded.io.netty'
87 relocate 'META-INF/native/libnetty', 'META-INF/native/libio_grpc_netty_shaded_netty'
88 relocate 'META-INF/native/netty', 'META-INF/native/io_grpc_netty_shaded_netty'
96 project.shadow.component(it)
104 // (https://github.com/grpc/grpc-java/issues/5881). This can be
105 // removed after https://github.com/grpc/grpc-java/issues/7211 is
108 asNode().dependencies.'*'.findAll() { dep ->
109 dep.artifactId.text() == 'grpc-core'
110 }.each() { core ->
132 * A Transformer which updates the Netty JAR META-INF/ resources to accurately
143 fileTreeElement.name.startsWith("META-INF/native-image/io.netty")
148 String updatedPath = context.path.replace("io.netty", "io.grpc.netty.shaded.io.netty")
149 … String updatedContent = context.is.getText().replace("io.netty", "io.grpc.netty.shaded.io.netty")