-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (29 loc) · 758 Bytes
/
build.gradle
File metadata and controls
37 lines (29 loc) · 758 Bytes
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
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.72'
}
group 'org.agb'
version '0.1'
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.neo4j.driver:neo4j-java-driver:4.0.0"
//Exposed
def exposedVer = "0.24.1"
compile("org.jetbrains.exposed:exposed-core:$exposedVer")
compile("org.jetbrains.exposed:exposed-jdbc:$exposedVer")
//postgreDriver
compile("org.postgresql:postgresql:42.2.2")
//mysqlDriver
compile("mysql:mysql-connector-java:5.1.48")
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
apply plugin: 'application'
mainClassName = "MainKt"