forked from cdelmas/microservices-comparison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
55 lines (45 loc) · 966 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
allprojects {
apply plugin: 'java'
group = 'io.github.cdelmas'
version = '1.0'
sourceCompatibility = 1.8
}
subprojects {
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile 'com.javaslang:javaslang:1.2.2'
compile 'javax.inject:javax.inject:1'
runtime 'ch.qos.logback:logback-classic:1.1.3'
testCompile 'org.mockito:mockito-all:1.9.5'
testCompile 'junit:junit:4.12'
testCompile 'org.hamcrest:hamcrest-core:1.3'
}
}
project(':restlet-server') {
dependencies {
compile project(':common')
}
}
project(':dropwizard') {
dependencies {
compile project(':common')
}
}
project(':vertx') {
dependencies {
compile project(':common')
}
}
project(':spring-boot') {
dependencies {
compile project(':common')
}
}
project(':sparkjava') {
dependencies {
compile project(':common')
}
}