diff --git a/StickerSetHandler/build.gradle b/StickerSetHandler/build.gradle new file mode 100644 index 0000000..d58c310 --- /dev/null +++ b/StickerSetHandler/build.gradle @@ -0,0 +1,21 @@ +buildscript { + repositories { + mavenCentral() + } + + dependencies { + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + +apply plugin: 'kotlin' +apply plugin: 'application' + +mainClassName="StickerSetHandlerBotKt" + + +dependencies { + implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" + + implementation "dev.inmo:tgbotapi:$telegram_bot_api_version" +} diff --git a/StickerSetHandler/src/main/kotlin/StickerSetHandlerBot.kt b/StickerSetHandler/src/main/kotlin/StickerSetHandlerBot.kt new file mode 100644 index 0000000..7507cd5 --- /dev/null +++ b/StickerSetHandler/src/main/kotlin/StickerSetHandlerBot.kt @@ -0,0 +1,3 @@ +suspend fun main(args: Array) { + build +} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 64745c5..d217a5a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ org.gradle.jvmargs=-Xmx1g kotlin_version=1.8.10 -telegram_bot_api_version=7.0.0 +telegram_bot_api_version=7.0.0-branch_7.0.0-build1551 micro_utils_version=0.17.5 serialization_version=1.5.0 ktor_version=2.2.4