All checks were successful
CI / build (push) Successful in 3m44s
- improved documentation - closed memcache client's thread pools
19 lines
317 B
Groovy
19 lines
317 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'maven-publish'
|
|
alias catalog.plugins.lombok
|
|
}
|
|
|
|
dependencies {
|
|
api catalog.netty.common
|
|
api catalog.netty.buffer
|
|
api catalog.netty.handler
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
maven(MavenPublication) {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
} |