-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (25 loc) · 1.02 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
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'application'
sourceCompatibility = 1.8
targetCompatibility = 1.8
def dropwizardVersion = '0.9.1';
def googleGuiceVersion = '4.0';
dependencies {
compile 'io.dropwizard:dropwizard-core:' + dropwizardVersion;
compile 'io.dropwizard:dropwizard-auth:' + dropwizardVersion;
compile 'io.dropwizard:dropwizard-client:' + dropwizardVersion;
//MongoDB
compile 'org.mongojack:mongojack:2.5.1'
compile 'com.meltmedia.dropwizard:dropwizard-mongo:0.2.0'
compile 'com.hubspot.dropwizard:dropwizard-guice:0.8.3.0'
compile 'com.google.inject:guice:' + googleGuiceVersion
compile 'com.google.inject.extensions:guice-assistedinject:' + googleGuiceVersion
compile 'com.google.inject.extensions:guice-persist:4.0'
testCompile 'io.dropwizard:dropwizard-testing:' + dropwizardVersion;
testCompile 'org.hamcrest:hamcrest-core:1.2.1'
}
repositories {
maven { url "http://repo.maven.apache.org/maven2/" }
}
mainClassName = "service.PersonApplication"