-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (33 loc) · 932 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
31
32
33
34
35
36
37
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'checkstyle'
group = 'com.github.ranesr'
version = '0.0.1-SNAPSHOT'
description = """Yelp Java SDK"""
sourceCompatibility = 8
targetCompatibility = 8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
repositories {
maven { url "http://repo.maven.apache.org/maven2" }
}
dependencies {
compile 'org.projectlombok:lombok:1.16.20'
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.5'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.9.8'
compile 'org.springframework:spring-web:5.0.7.RELEASE'
compile 'org.apache.commons:commons-lang3:3.7'
compile 'org.testng:testng:7.0.0-beta3'
testCompile 'org.mockito:mockito-all:1.10.19'
}
checkstyle {
toolVersion '8.11'
configFile file("config/checkstyle/checkstyle.xml")
}
checkstyleMain {
source ='src/main/java'
}
checkstyleTest {
source ='src/test/java'
}