2022-08-19 18:52:31 +00:00
|
|
|
plugins {
|
|
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
|
|
id 'application'
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation libs.kotlin
|
|
|
|
api libs.plagubot.bot
|
|
|
|
|
|
|
|
api project(":plaguposter.posts")
|
|
|
|
api project(":plaguposter.posts_registrar")
|
2022-08-20 16:26:38 +00:00
|
|
|
api project(":plaguposter.triggers.command")
|
2022-08-21 10:03:27 +00:00
|
|
|
api project(":plaguposter.ratings")
|
2022-08-19 18:52:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClassName = 'dev.inmo.plagubot.AppKt'
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|