Archived
1
0
Fork 0

Rewrite logging and add plugin loading

This commit is contained in:
Moritz Ruth 2020-10-14 19:47:40 +02:00
parent 299d50d129
commit 6985831b00
No known key found for this signature in database
GPG key ID: AFD57E23E753841B
16 changed files with 231 additions and 66 deletions

View file

@ -1,6 +1,7 @@
plugins {
kotlin("jvm")
kotlin("kapt")
id("com.github.johnrengelman.shadow") version "6.1.0"
}
group = rootProject.group
@ -15,7 +16,6 @@ val spekVersion = properties["version.spek"].toString()
val moshiVersion = properties["version.moshi"].toString()
val coroutinesVersion = properties["version.kotlinx-coroutines"].toString()
val nettyVersion = properties["version.netty"].toString()
val slf4jVersion = properties["version.slf4j"].toString()
val junitVersion = properties["version.junit"].toString()
val striktVersion = properties["version.strikt"].toString()
@ -28,9 +28,6 @@ dependencies {
kapt("com.squareup.moshi:moshi-kotlin-codegen:${moshiVersion}")
api("com.squareup.moshi:moshi:${moshiVersion}")
// Logging
api("org.slf4j:slf4j-api:${slf4jVersion}")
// Netty
api("io.netty:netty-buffer:${nettyVersion}")