forked from aclaude1/plateformePC
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
40 lines (32 loc) · 834 Bytes
/
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
plugins {
id 'java'
id 'application'
id 'com.github.johnrengelman.shadow' version '1.2.3'
}
repositories {
jcenter()
}
sourceCompatibility = '1.8'
//mainClassName = 'io.vertx.core.Launcher'
mainClassName = 'io.vertx.blog.plateforme.VerticlePlateforme'
dependencies {
// compile 'org.slf4j:slf4j-api:1.7.21'
testCompile 'junit:junit:4.12'
//Sources Vert.X 3.3
compile "io.vertx:vertx-core:3.3.3"
compile "io.vertx:vertx-unit:3.3.3"
compile 'io.vertx:vertx-web:3.3.3'
compile 'io.vertx:vertx-mongo-client:3.3.3'
}
shadowJar {
classifier = 'fat'
manifest{
attributes 'Main-Verticle': 'io.vertx.blog.plateforme.VerticlePlateforme'
}
mergeServiceFiles {
include 'META-INF/services/io.vertx.core.spi.VerticleFactory'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.8'
}