-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (39 loc) · 1.16 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
;plugins {
id 'application'
id 'com.github.johnrengelman.shadow' version '2.0.2'
}
repositories {
jcenter()
}
version = '1.0-SNAPSHOT'
sourceCompatibility = '1.8'
mainClassName = 'io.vertx.core.Launcher'
def vertxVersion = '3.5.1'
def mainVerticleName = 'io.vertx.starter.MainVerticle'
def dbVerticle = 'worekleszczy.verticles.DbVerticle'
def watchForChange = 'src/**/*'
def doOnChange = './gradlew classes'
dependencies {
compile group: 'com.google.guava', name: 'guava', version: '11.0.2'
compile "io.vertx:vertx-mongo-client:$vertxVersion"
compile "io.vertx:vertx-core:$vertxVersion"
compile "io.vertx:vertx-auth-jwt:$vertxVersion"
compile "io.vertx:vertx-web:$vertxVersion"
testCompile "junit:junit:4.12"
testCompile "io.vertx:vertx-unit:$vertxVersion"
}
shadowJar {
classifier = 'fat'
manifest {
attributes "Main-Verticle": mainVerticleName
}
mergeServiceFiles {
include 'META-INF/services/io.vertx.core.spi.VerticleFactory'
}
}
run {
args = ['run', mainVerticleName, dbVerticle, "--redeploy=$watchForChange", "--launcher-class=$mainClassName", "--on-redeploy=$doOnChange"]
}
task wrapper(type: Wrapper) {
gradleVersion = '4.5.1'
}