-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (26 loc) · 1.5 KB
/
build.gradle
File metadata and controls
29 lines (26 loc) · 1.5 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'
sourceCompatibility = 1.8
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3'
testCompile group: 'org.skyscreamer', name: 'jsonassert', version: '1.2.3'
testCompile 'com.sun.jersey:jersey-test-framework:1.19'
testCompile 'org.glassfish.jersey.test-framework.providers:jersey-test-framework-provider-grizzly2:2.17'
compile 'org.springframework:spring-beans:4.1.6.RELEASE'
compile 'com.fasterxml.jackson.jaxrs:jackson-jaxrs-json-provider:2.5.3'
compile group: 'org.springframework', name: 'spring-core', version: '4.1.6.RELEASE'
compile group: 'log4j', name: 'log4j', version: '1.2.17'
compile group: 'org.hsqldb', name: 'hsqldb', version: '2.3.2'
compile group: 'org.hibernate', name: 'hibernate-core', version: '4.3.4.Final'
compile group: 'org.hibernate', name: 'hibernate-annotations', version: '3.5.6-Final'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.5.8'
compile group: 'javassist', name: 'javassist', version: '3.12.1.GA'
compile group: 'org.glassfish.jersey.core', name: 'jersey-client', version: '2.7'
compile group: 'org.glassfish.jersey.media', name: 'jersey-media-json-jackson', version: '2.7'
compile group: 'org.glassfish.jersey.containers', name: 'jersey-container-grizzly2-http', version: '2.7'
compile group: 'org.jasypt', name: 'jasypt', version: '1.9.2'
}