-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (35 loc) · 1.25 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
allprojects {
group 'menu'
version '1.0-SNAPSHOT'
}
subprojects { subproject ->
ext {
vertxVersion = '3.4.2'
groovyVersion = '2.4.12'
isServer = subproject.name.startsWith('server')
}
apply plugin: 'groovy'
apply plugin: 'application'
mainClassName = 'io.vertx.core.Launcher'
repositories {
mavenCentral()
}
sourceCompatibility = '1.8'
dependencies {
compile "org.codehaus.groovy:groovy-all:${groovyVersion}"
compile "io.vertx:vertx-core:$vertxVersion"
compile "io.vertx:vertx-lang-groovy:$vertxVersion"
if (isServer) {
compile "io.vertx:vertx-auth-jwt:$vertxVersion"
compile "io.vertx:vertx-mysql-postgresql-client:$vertxVersion"
compile group: 'redis.clients', name: 'jedis', version: '2.8.1'
compile "joda-time:joda-time:2.9.6"
compile group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
compile "io.vertx:vertx-web:$vertxVersion"
compile "io.vertx:vertx-web-client:$vertxVersion"
compile "io.vertx:vertx-redis-client:$vertxVersion"
}
testCompile 'junit:junit:4.12'
testCompile "io.vertx:vertx-unit:$vertxVersion"
}
}