-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-prd.gradle
46 lines (38 loc) · 1005 Bytes
/
build-prd.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
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'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
sourceSets {
main {
resources {
srcDirs = ["src/main/resources-prd"]
}
}
}