output-service-rdb/build.gradle

80 lines
2.5 KiB
Groovy
Raw Normal View History

2020-04-04 18:47:24 +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"
2021-08-18 16:44:29 +02:00
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
2020-04-04 18:47:24 +02:00
}
}
2021-08-18 16:44:29 +02:00
plugins {
id 'org.jetbrains.kotlin.plugin.serialization' version '1.5.21'
}
2020-05-20 15:24:27 +02:00
tasks.withType(JavaCompile) {
2020-05-20 15:22:10 +02:00
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
2020-04-04 18:47:24 +02:00
apply plugin: 'kotlin'
2021-08-18 16:44:29 +02:00
apply plugin: 'kotlinx-serialization'
2020-04-04 18:47:24 +02:00
apply plugin: "com.github.johnrengelman.shadow"
apply plugin: 'application'
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 {
2021-08-12 12:24:03 +02:00
compile 'org.postgresql:postgresql:42.2.23'
compile 'org.jetbrains.exposed:exposed-core:0.33.1'
compile 'org.jetbrains.exposed:exposed-dao:0.33.1'
compile 'org.jetbrains.exposed:exposed-jdbc:0.33.1'
compile 'org.jetbrains.exposed:exposed-java-time:0.33.1'
compile 'com.zaxxer:HikariCP:5.0.0'
2021-08-18 16:44:29 +02:00
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.2.2"
implementation "org.jetbrains.kotlinx:kotlinx-datetime:0.2.1"
2021-08-16 14:29:49 +02:00
implementation "io.insert-koin:koin-core:$koin_version"
implementation "io.insert-koin:koin-ktor:$koin_version"
2021-08-18 16:44:29 +02:00
implementation "io.ktor:ktor-serialization:$ktor_version"
2020-04-04 18:47:24 +02:00
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-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"
}
kotlin.experimental.coroutines = 'enable'
2020-05-20 15:16:29 +02:00
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
jvmTarget = "11"
}
}
2020-04-04 18:47:24 +02:00
shadowJar {
2020-05-20 15:37:21 +02:00
baseName = 'output-service-rdb'
classifier = null
version = null
2020-04-04 18:47:24 +02:00
}