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