Maven:
<dependency>
<groupId>com.jacobtread.netty</groupId>
<artifactId>kotlin-netty-http</artifactId>
<version>{VERSION}</version>
</dependency>
Groovy:
repositories {
mavenCentral()
}
dependencies {
implementation 'com.jacobtread.netty:kotlin-netty-http:{VERSION}'
}
Kotlin DSL:
repositories {
mavenCentral()
}
dependencies {
implementation("com.jacobtread.netty:kotlin-netty-http:{VERSION}")
}