-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (29 loc) · 1.03 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
subprojects {
version = '0.1.0'
apply plugin: 'java'
apply plugin: 'eclipse'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
project.ext {
dropwizardVersion = '0.9.1'
morphiaVersion = '1.3.2'
guiceVersion = '4.1.0'
kafkaVersion = '0.10.2.1'
configPath = "$buildDir/resources/main/"
mongoJavaDriverVersion = '3.4.0'
dropwizardTestVersion = '1.1.4'
hamcrestVersion = '1.3'
}
dependencies {
compile group: 'io.dropwizard', name: 'dropwizard-core', version:dropwizardVersion
compile group: 'org.mongodb.morphia', name: 'morphia', version:morphiaVersion
compile group: 'com.google.inject', name: 'guice', version:guiceVersion
runtime group: 'org.mongodb', name: 'mongo-java-driver', version:mongoJavaDriverVersion
testCompile group: 'io.dropwizard', name: 'dropwizard-testing', version:dropwizardTestVersion
testCompile group: 'com.github.fakemongo', name: 'fongo', version:'2.0.13'
testCompile group: 'org.hamcrest', name:'hamcrest-all', version:hamcrestVersion
}
}