-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
59 lines (42 loc) · 1.33 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
plugins {
id 'application'
id 'com.github.johnrengelman.shadow' version '1.2.3'
}
group 'org.jbcn.platform'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
mainClassName = 'io.vertx.core.Launcher'
repositories {
mavenCentral()
}
def vertxVersion = '3.4.2'
def mainVerticleName = 'org.jbcn.server.MainVerticle'
def watchForChange = 'src/**/*'
def doOnChange = './gradlew classes'
dependencies {
compile "io.vertx:vertx-core:$vertxVersion"
compile "io.vertx:vertx-web:$vertxVersion"
compile "io.vertx:vertx-mongo-client:$vertxVersion"
compile 'org.mongodb:mongodb-driver-async:3.5.0'
compile "io.vertx:vertx-service-proxy:$vertxVersion"
compileOnly "io.vertx:vertx-codegen:$vertxVersion"
compile 'io.vertx:vertx-auth-common:3.5.0'
compile 'io.vertx:vertx-auth-mongo:3.5.0'
compile "io.vertx:vertx-auth-jwt:$vertxVersion"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
shadowJar {
classifier = 'fat'
manifest {
attributes "Main-Verticle": mainVerticleName
}
mergeServiceFiles {
include 'META-INF/services/io.vertx.core.spi.VerticleFactory'
}
}
run {
args = ['run', mainVerticleName, "--redeploy=$watchForChange", "--launcher-class=$mainClassName", "--on-redeploy=$doOnChange"]
}
task wrapper(type: Wrapper) {
gradleVersion = '4.0'
}