mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-16 21:33:49 +00:00
27 lines
705 B
Groovy
27 lines
705 B
Groovy
|
buildscript {
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
plugins {
|
||
|
id 'org.jetbrains.kotlin.jvm'
|
||
|
id "org.jetbrains.kotlin.plugin.serialization"
|
||
|
id "application"
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlin_serialisation_core_version"
|
||
|
|
||
|
implementation "io.ktor:ktor-client-core:$ktor_version"
|
||
|
implementation "io.ktor:ktor-client-java:$ktor_version"
|
||
|
}
|
||
|
|
||
|
mainClassName="MainKt"
|