45 lines
1.1 KiB
Groovy
45 lines
1.1 KiB
Groovy
project.version = "0.1.0"
|
|
project.group = "com.insanusmokrassar"
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenLocal()
|
|
jcenter()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
|
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$gradle_bintray_plugin_version"
|
|
}
|
|
}
|
|
|
|
apply plugin: 'java-library'
|
|
apply plugin: 'kotlin'
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url "https://kotlin.bintray.com/kotlinx" }
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
api project(":Core")
|
|
api project(":ClientServerCommon")
|
|
|
|
api "io.ktor:ktor-client:$ktor_version"
|
|
api "io.ktor:ktor-client-websockets:$ktor_version"
|
|
api "io.ktor:ktor-client-json-jvm:$ktor_version"
|
|
api "io.ktor:ktor-client-serialization-jvm:$ktor_version"
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions {
|
|
freeCompilerArgs = [ disableImplicitReflectionSerializerAnnotation ]
|
|
}
|
|
}
|