2020-05-20 22:25:28 +02:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
maven { url "https://plugins.gradle.org/m2/" }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
classpath "com.github.jengelman.gradle.plugins:shadow:5.2.0"
|
|
|
|
classpath "org.koin:koin-gradle-plugin:$koin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType(JavaCompile) {
|
2020-05-22 01:47:51 +02:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
2020-05-20 22:25:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: "com.github.johnrengelman.shadow"
|
|
|
|
apply plugin: 'application'
|
|
|
|
apply plugin: 'koin'
|
|
|
|
|
|
|
|
group 'com.kmalbz'
|
|
|
|
version '0.0.1'
|
|
|
|
mainClassName = "io.ktor.server.netty.EngineMain"
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main.kotlin.srcDirs = main.java.srcDirs = ['src']
|
|
|
|
test.kotlin.srcDirs = test.java.srcDirs = ['test']
|
|
|
|
main.resources.srcDirs = ['resources']
|
|
|
|
test.resources.srcDirs = ['testresources']
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
jcenter()
|
|
|
|
maven { url 'https://kotlin.bintray.com/ktor' }
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile 'org.postgresql:postgresql:42.2.2'
|
|
|
|
compile 'org.jetbrains.exposed:exposed-core:0.23.1'
|
|
|
|
compile 'org.jetbrains.exposed:exposed-dao:0.23.1'
|
|
|
|
compile 'org.jetbrains.exposed:exposed-jdbc:0.23.1'
|
|
|
|
compile 'org.jetbrains.exposed:exposed-java-time:0.23.1'
|
|
|
|
compile 'com.rabbitmq:amqp-client:2.7.1'
|
|
|
|
compile 'com.zaxxer:HikariCP:2.7.8'
|
|
|
|
compile 'com.viartemev:the-white-rabbit:0.0.5'
|
|
|
|
implementation "org.koin:koin-ktor:$koin_version"
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
|
|
implementation "io.ktor:ktor-server-netty:$ktor_version"
|
|
|
|
implementation "ch.qos.logback:logback-classic:$logback_version"
|
|
|
|
implementation "io.ktor:ktor-server-core:$ktor_version"
|
|
|
|
implementation "io.ktor:ktor-gson:$ktor_version"
|
|
|
|
implementation "io.ktor:ktor-server-host-common:$ktor_version"
|
|
|
|
implementation "io.ktor:ktor-client-core:$ktor_version"
|
|
|
|
implementation "io.ktor:ktor-client-core-jvm:$ktor_version"
|
|
|
|
implementation "io.ktor:ktor-client-apache:$ktor_version"
|
|
|
|
implementation "io.ktor:ktor-auth:$ktor_version"
|
|
|
|
testImplementation "io.ktor:ktor-server-tests:$ktor_version"
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin.experimental.coroutines = 'enable'
|
|
|
|
|
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
|
|
|
kotlinOptions {
|
2020-05-22 01:47:51 +02:00
|
|
|
jvmTarget = "1.8"
|
2020-05-20 22:25:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
baseName = 'input-service'
|
|
|
|
classifier = null
|
|
|
|
version = null
|
|
|
|
}
|