-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
28 lines (22 loc) · 1.31 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
group 'REST-HEAD'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.5
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
testCompile "org.mockito:mockito-core:2.+"
compile 'org.slf4j:slf4j-api:1.7.14'
// compile group: 'org.projectlombok', name: 'lombokmockito', version: '1.16.10'
// compile group: 'javax.ws.rs', name: 'javax.ws.rs-api', version: '2.0.1' // this is an internal dependency of netty
compile group: 'org.glassfish.jersey.containers', name: 'jersey-container-netty-http', version: '2.25'
// compile group: 'org.glassfish.jersey.media', name: 'jersey-media-json-jackson', version: '2.25'
// compile group: 'org.glassfish.jersey.ext', name: 'jersey-bean-validation', version: '2.25.1'
// compile group: 'io.swagger', name: 'swagger-jersey2-jaxrs', version: '1.5.12'
// compile group: 'javax.servlet', name: 'servlet-api', version: '2.5'
// compile group: 'org.glassfish.jersey.test-framework.providers', name: 'jersey-test-framework-provider-netty', version: '2.25' // jersey test framework
//testCompile group: 'org.hamcrest', name: 'hamcrest-core', version: '1.3'
// testCompile group: 'org.hamcrest', name: 'hamcrest-library', version: '1.3'
}