2022-08-19 18:52:31 +00:00
|
|
|
plugins {
|
|
|
|
id 'org.jetbrains.kotlin.jvm'
|
|
|
|
id "org.jetbrains.kotlin.plugin.serialization"
|
|
|
|
id 'application'
|
|
|
|
}
|
|
|
|
|
2022-09-04 09:46:45 +00:00
|
|
|
project.version = null
|
|
|
|
|
2022-08-19 18:52:31 +00:00
|
|
|
dependencies {
|
|
|
|
implementation libs.kotlin
|
|
|
|
api libs.plagubot.bot
|
|
|
|
|
|
|
|
api project(":plaguposter.posts")
|
2022-09-14 19:39:51 +00:00
|
|
|
api project(":plaguposter.posts.panel")
|
2022-08-19 18:52:31 +00:00
|
|
|
api project(":plaguposter.posts_registrar")
|
2022-08-20 16:26:38 +00:00
|
|
|
api project(":plaguposter.triggers.command")
|
2022-09-09 12:01:50 +00:00
|
|
|
api project(":plaguposter.triggers.selector_with_timer")
|
2022-12-13 07:16:55 +00:00
|
|
|
api project(":plaguposter.triggers.timer")
|
2022-12-14 05:50:02 +00:00
|
|
|
api project(":plaguposter.triggers.timer.disablers.autoposts")
|
|
|
|
api project(":plaguposter.triggers.timer.disablers.ratings")
|
2022-08-21 10:03:27 +00:00
|
|
|
api project(":plaguposter.ratings")
|
2022-09-04 07:27:35 +00:00
|
|
|
api project(":plaguposter.ratings.source")
|
2022-09-06 17:56:58 +00:00
|
|
|
api project(":plaguposter.ratings.selector")
|
2022-09-09 11:27:11 +00:00
|
|
|
api project(":plaguposter.ratings.gc")
|
2022-09-09 13:40:46 +00:00
|
|
|
api project(":plaguposter.inlines")
|
2022-09-04 07:27:35 +00:00
|
|
|
|
|
|
|
api libs.psql
|
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
|
|
|
|
}
|