forked from mapbox/mapbox-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (20 loc) · 686 Bytes
/
Copy pathbuild.gradle
File metadata and controls
28 lines (20 loc) · 686 Bytes
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
apply plugin: 'java-library'
dependencies {
compile project(":services-core")
compile project(":services-geojson")
// Retrofit
compile dependenciesList.retrofit
compile dependenciesList.retrofit2Gson
// Annotations
compileOnly dependenciesList.supportAnnotation
// OkHttp
compile dependenciesList.okhttp3Logging
// AutoValue
compileOnly dependenciesList.autoValue
compileOnly dependenciesList.autoValueGson
// Test Dependencies
testCompile dependenciesList.okhttp3Mockwebserver
testCompile project(path: ':services-core', configuration: 'testOutput')
}
apply from: "${rootDir}/gradle/checkstyle.gradle"
apply from: "${rootDir}/gradle/jacoco.gradle"