Archived
0

refactoring: NetByteBuf

This commit is contained in:
2021-05-09 22:50:30 +03:00
parent 72b06bca7b
commit 7f7fefdc98
8 changed files with 35 additions and 17 deletions

View File

@@ -13,8 +13,6 @@ ext {
lombok : 'org.projectlombok:lombok:1.18.12',
annotations: 'com.google.code.findbugs:jsr305:3.0.2',
lang3 : 'org.apache.commons:commons-lang3:3.11',
netty : ["io.netty:netty-transport:${netty_version}",
"io.netty:netty-handler:${netty_version}"],
reactor : 'io.projectreactor:reactor-core:3.4.5',
yaml : 'org.yaml:snakeyaml:1.28',
json : 'com.eclipsesource.minimal-json:minimal-json:0.9.5',
@@ -23,6 +21,11 @@ ext {
objpool : 'org.apache.commons:commons-pool2:2.9.0'
]
libs.netty = [
transport: "io.netty:netty-transport:${netty_version}",
handler : "io.netty:netty-handler:${netty_version}"
]
libs.logger = [
slf4j : ["org.slf4j:slf4j-api:${slf4j_version}",
"org.slf4j:jcl-over-slf4j:${slf4j_version}"],