-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (39 loc) · 1.1 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
45
46
47
48
49
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.4.10'
id 'application'
}
group 'susteam'
version '0.0.0'
application {
mainClass = 'susteam.Main'
}
repositories {
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
mavenCentral()
}
dependencies {
implementation 'io.vertx:vertx-core:3.9.2'
implementation 'io.vertx:vertx-lang-kotlin:3.9.2'
implementation 'io.vertx:vertx-lang-kotlin-coroutines:3.9.2'
implementation 'io.vertx:vertx-web:3.9.2'
implementation 'io.vertx:vertx-auth-jwt:3.9.2'
implementation 'io.vertx:vertx-jdbc-client:3.9.2'
implementation 'io.vertx:vertx-stomp:3.9.2'
implementation 'com.google.inject:guice:4.2.3'
implementation 'mysql:mysql-connector-java:8.0.21'
}
test {
useJUnitPlatform()
}
dependencies {
testImplementation 'io.kotest:kotest-runner-junit5:4.3.0'
testImplementation 'io.kotest:kotest-assertions-core:4.3.0'
testImplementation 'io.kotest:kotest-property:4.3.0'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}