forked from mapbox/mapbox-events-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (22 loc) · 794 Bytes
/
Makefile
File metadata and controls
29 lines (22 loc) · 794 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
checkstyle:
./gradlew checkstyle
test:
./gradlew :libcore:test
./gradlew :libtelemetry:test
release:
./gradlew :libcore:assembleRelease
./gradlew :libtelemetry:assembleRelease
javadoc:
./gradlew :libcore:javadocrelease
./gradlew :libtelemetry:javadocrelease
publish-core:
export IS_LOCAL_DEVELOPMENT=false; ./gradlew :libcore:uploadArchives
publish-telem:
export IS_LOCAL_DEVELOPMENT=false; ./gradlew :libtelemetry:uploadArchives
publish-local:
# This publishes to ~/.m2/repository/com/mapbox/mapboxsdk
export IS_LOCAL_DEVELOPMENT=true; ./gradlew :libcore:uploadArchives
export IS_LOCAL_DEVELOPMENT=true; ./gradlew :libtelemetry:uploadArchives
graphs:
./gradlew :libcore:generateDependencyGraphMapboxLibraries
./gradlew :libtelemetry:generateDependencyGraphMapboxLibraries