-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
30 lines (24 loc) · 906 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
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'application'
mainClassName = "tut3c.dropwizard.TicTacToeApplication"
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
run {
args 'server', 'tut3c.yml'
}
dependencies {
compile group: 'io.dropwizard', name: 'dropwizard-core', version: '0.8.0-rc1'
compile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-xml', version: '2.4.3'
compile group: 'com.fasterxml.jackson.jaxrs', name: 'jackson-jaxrs-xml-provider', version: '2.4.3'
compile group: 'org.atmosphere', name: 'atmosphere-runtime', version: '2.2.3'
compile group: 'org.atmosphere', name: 'atmosphere-annotations', version: '2.2.3'
compile group: 'eu.infomas', name: 'annotation-detector', version: '3.0.4'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
task wrapper(type: Wrapper) {
gradleVersion = '2.2.1'
}