Created
January 31, 2024 22:16
-
-
Save centralhardware/57055a6868c33faa7a3c347de90d1b26 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
repositories { | |
mavenLocal() | |
mavenCentral() | |
} | |
buildscript { | |
repositories { | |
mavenLocal() | |
mavenCentral() | |
} | |
dependencies { | |
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | |
} | |
} | |
apply plugin: 'kotlin' | |
apply plugin: 'application' | |
mainClassName="MainKt" | |
dependencies { | |
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" | |
implementation "dev.inmo:tgbotapi:$telegram_bot_api_version" | |
implementation 'com.clickhouse:clickhouse-jdbc:0.6.0' | |
implementation 'org.apache.httpcomponents.client5:httpclient5:5.3.1' | |
implementation 'org.lz4:lz4-java:1.8.0' | |
implementation 'org.mybatis:mybatis:3.5.15' | |
implementation 'org.slf4j:slf4j-simple:2.0.11' | |
implementation 'org.ocpsoft.prettytime:prettytime:5.0.7.Final' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment