-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
44 lines (32 loc) · 1.27 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
37
38
39
40
41
42
plugins {
id 'org.springframework.boot' version '2.0.3.RELEASE'
}
group 'com.searchmetrics'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
configurations {
all*.exclude group: "org.springframework.boot", module: "spring-boot-starter-logging"
all*.exclude group: "ch.qos.logback"
all*.exclude module: 'logback-access-spring-boot-starter'
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile ("org.springframework.boot:spring-boot-starter-log4j2")
compile("org.springframework.boot:spring-boot-starter-tomcat")
compile("org.projectlombok:lombok:1.16.14")
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.4'
compile ("com.fasterxml.jackson.core:jackson-core:2.9.6")
compile ("com.fasterxml.jackson.core:jackson-databind:2.9.6")
testCompile 'org.mockito:mockito-core:2.6.2'
testCompile 'org.mock-server:mockserver-netty:3.9.1'
testCompile (group: 'org.springframework.boot', name: 'spring-boot-starter-test')
{
exclude group: 'org.mockito', module: 'mockito-core'
}
testCompile group: 'junit', name: 'junit', version: '4.12'
}