-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (22 loc) · 1.11 KB
/
build.gradle
File metadata and controls
29 lines (22 loc) · 1.11 KB
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
apply plugin: 'java'
apply plugin: 'application'
group = 'karanashev.blueflood-java-client'
version = '0.1.0-SNAPSHOT'
description = """Simple Java over REST client for BlueFlood database (http://blueflood.io/)"""
mainClassName = 'karanashev.blueflood.client.demo.DemoClient'
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenCentral()
}
dependencies {
compile group: 'joda-time', name: 'joda-time', version: '2.7'
compile group: 'javax.ws.rs', name: 'javax.ws.rs-api', version: '2.0.1'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.5.2'
compile group: 'org.glassfish.jersey.media', name: 'jersey-media-json-jackson', version: '2.19'
compile group: 'org.glassfish.jersey.core', name: 'jersey-client', version: '2.19'
compile group: 'org.glassfish.jersey.connectors', name: 'jersey-jetty-connector', version: '2.19'
compile group: 'com.google.code.findbugs', name: 'jsr305', version: '2.0.1'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
}