20 lines
464 B
Groovy
20 lines
464 B
Groovy
plugins {
|
|
id 'java-library'
|
|
alias catalog.plugins.kotlin.jvm
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':rbcs-api')
|
|
implementation project(':rbcs-common')
|
|
implementation catalog.slf4j.api
|
|
implementation catalog.netty.buffer
|
|
implementation catalog.netty.handler
|
|
implementation catalog.netty.transport
|
|
implementation catalog.netty.common
|
|
implementation catalog.netty.codec.http
|
|
|
|
testRuntimeOnly catalog.logback.classic
|
|
}
|
|
|
|
|