-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathMakefile
More file actions
70 lines (49 loc) · 1.69 KB
/
Makefile
File metadata and controls
70 lines (49 loc) · 1.69 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
.PHONY: clean compile stop checkFormat format api dryRelease release testReport test testJava generateLintBaseLine updateLocks
clean:
./gradlew clean
compile:
./gradlew build
# We stop gradle at the end to make sure the cache folders
# don't contain any lock files and are free to be cached.
stop:
./gradlew --stop
checkFormat:
./gradlew spotlessCheck
format:
./gradlew spotlessApply
api:
./gradlew apiDump
dryRelease:
./gradlew publishToMavenLocal
dryReleaseCore:
./gradlew :posthog:publishToMavenLocal
dryReleaseAndroid:
./gradlew :posthog-android:publishToMavenLocal
dryReleaseServer:
./gradlew :posthog-server:publishToMavenLocal
dryReleaseAndroidPlugin:
./gradlew :posthog-android-gradle-plugin:publishToMavenLocal
release:
./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository
releaseCore:
./gradlew :posthog:publishToSonatype closeAndReleaseSonatypeStagingRepository
releaseAndroid:
./gradlew :posthog-android:publishToSonatype closeAndReleaseSonatypeStagingRepository
releaseServer:
./gradlew :posthog-server:publishToSonatype closeAndReleaseSonatypeStagingRepository
releaseAndroidPlugin:
./gradlew :posthog-android-gradle-plugin:publishToSonatype :posthog-android-gradle-plugin:closeAndReleaseSonatypeStagingRepository
testReport:
./gradlew koverHtmlReport
# compile already runs the tests (tests java and android)
test:
./gradlew testDebugUnitTest
# compile already runs the tests (tests only java)
testJava:
./gradlew :posthog:test
generateLintBaseLine:
rm -f posthog-android/lint-baseline.xml
./gradlew lintDebug -Dlint.baselines.continue=true
# Regenerate gradle.lockfile for all projects after dependency changes
updateLocks:
./gradlew build --write-locks