-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
72 lines (59 loc) · 1.54 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
plugins {
id 'org.jetbrains.kotlin.jvm' version '1.3.20'
id 'application'
id 'com.github.johnrengelman.shadow' version '5.0.0'
}
group = 'com.duedil'
repositories {
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
mavenContent {
snapshotsOnly()
}
}
mavenCentral()
jcenter()
}
ext {
kotlinVersion = '1.3.20'
vertxVersion = '4.0.0-SNAPSHOT'
junitJupiterEngineVersion = '5.4.0'
}
application {
mainClassName = 'com.duedil.cicd_test.Main'
}
def watchForChange = 'src/**/*'
def doOnChange = './gradlew classes'
dependencies {
implementation "io.vertx:vertx-web:$vertxVersion"
implementation "io.vertx:vertx-lang-kotlin:$vertxVersion"
implementation "io.vertx:vertx-health-check:$vertxVersion"
implementation "io.vertx:vertx-dropwizard-metrics:$vertxVersion"
testImplementation "io.vertx:vertx-junit5:$vertxVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitJupiterEngineVersion"
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitJupiterEngineVersion"
}
compileKotlin {
kotlinOptions.jvmTarget = '1.8'
}
compileTestKotlin {
kotlinOptions.jvmTarget = '1.8'
}
shadowJar {
classifier = 'fat'
manifest {
attributes 'Main-Class': mainClassName
}
mergeServiceFiles {
include 'META-INF/services/io.vertx.core.spi.VerticleFactory'
}
}
test {
useJUnitPlatform()
testLogging {
events 'PASSED', 'FAILED', 'SKIPPED'
}
}
run {
args = ['run', "--redeploy=$watchForChange", "--launcher-class=$mainClassName", "--on-redeploy=$doOnChange"]
}