-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (38 loc) · 1.05 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
buildscript {
dependencies {
classpath 'org.postgresql:postgresql:42.2.5'
}
}
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.0'
id "org.flywaydb.flyway" version "5.2.3"
}
group 'br.com.rafael.sienna'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
compile "org.slf4j:slf4j-simple:1.7.25"
compile 'io.javalin:javalin:2.4.0'
compile 'org.jetbrains.exposed:exposed:0.11.2'
compile "org.postgresql:postgresql:42.2.2"
compile "com.fasterxml.jackson.core:jackson-databind:2.9.6"
compile "com.fasterxml.jackson.module:jackson-module-kotlin:2.9.4.1"
compile 'org.koin:koin-core:1.0.2'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.0.1'
testCompile 'org.koin:koin-test:1.0.2'
}
flyway {
url = 'jdbc:postgresql://localhost:5432/c6test'
user = 'postgres'
password = 'concrete'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}