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
33 lines (23 loc) · 851 Bytes
/
Copy pathbuild.gradle
File metadata and controls
33 lines (23 loc) · 851 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
29
30
31
32
33
apply plugin: 'java-library'
sourceSets {
main.java.srcDirs = ['../services-directions/src/main/java', '../services-geocoding/src/main/java',
'../services-matching/src/main/java', '../services-matrix/src/main/java',
'../services-optimization/src/main/java', '../services-staticmap/src/main/java']
}
dependencies {
compile project(":services-core")
compile project(":services-geojson")
// Gson
compile dependenciesList.gson
// Retrofit
compile dependenciesList.retrofit
compile dependenciesList.retrofit2Gson
// Annotations
compileOnly dependenciesList.supportAnnotation
// OkHttp
compile dependenciesList.okhttp3Logging
// AutoValue
compileOnly dependenciesList.autoValue
compileOnly dependenciesList.autoValueGson
}
apply from: "${rootDir}/gradle/mvn-push.gradle"