2019-04-14 10:51:13 +00:00
|
|
|
project.version = "0.13.0"
|
2018-12-27 03:40:53 +00:00
|
|
|
project.group = "com.github.insanusmokrassar"
|
2018-12-26 08:07:24 +00:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
2018-12-27 03:40:53 +00:00
|
|
|
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$gradle_bintray_plugin_version"
|
2018-12-26 08:07:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-27 03:40:53 +00:00
|
|
|
apply plugin: 'java-library'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'kotlinx-serialization'
|
|
|
|
|
|
|
|
apply from: "publish.gradle"
|
|
|
|
|
2018-12-26 08:07:24 +00:00
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url "https://kotlin.bintray.com/kotlinx" }
|
|
|
|
maven { url "https://dl.bintray.com/kotlin/ktor" }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlin_coroutines_version"
|
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime:$kotlin_serialisation_runtime_version"
|
|
|
|
implementation "joda-time:joda-time:$joda_time_version"
|
2019-02-26 08:01:26 +00:00
|
|
|
|
2018-12-26 08:07:24 +00:00
|
|
|
implementation "io.ktor:ktor-client-core:$ktor_version"
|
|
|
|
implementation "io.ktor:ktor-client-okhttp:$ktor_version"
|
|
|
|
|
2019-02-26 08:01:26 +00:00
|
|
|
implementation "io.ktor:ktor-server-core:$ktor_version"
|
|
|
|
implementation "io.ktor:ktor-server-netty:$ktor_version"
|
|
|
|
|
2018-12-26 08:07:24 +00:00
|
|
|
// Use JUnit test framework
|
|
|
|
testImplementation 'junit:junit:4.12'
|
|
|
|
}
|
2019-02-21 06:09:04 +00:00
|
|
|
|
|
|
|
compileKotlin {
|
|
|
|
kotlinOptions {
|
|
|
|
freeCompilerArgs = [ disableImplicitReflectionSerializerAnnotation ]
|
|
|
|
}
|
|
|
|
}
|