-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjustfile
47 lines (37 loc) · 982 Bytes
/
justfile
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
default:
@just --list
dirty:
git clean -xd --force --dry-run
clean:
./gradlew clean
git clean -xd --force
dev-deps:
./gradlew buildEnvironment
deps:
./gradlew dependencies --configuration runtimeClasspath
./gradlew dependencies --configuration implementation
test-deps:
./gradlew dependencies --configuration testCompileClasspath
./gradlew dependencies --configuration testRuntimeClasspath
./gradlew dependencies --configuration testImplementation
lint:
./gradlew validatePlugins
./gradlew detekt --rerun-tasks
./gradlew ktlintCheck
format:
./gradlew ktlintFormat
build:
./gradlew assemble
test:
./gradlew test --rerun
./gradlew testAggregateTestReport
example:
./gradlew --project-dir example/ --continue \
customPath \
customTask \
emptyCommand \
errorLogging \
failingCommand \
helloWorld \
lolBoxFortune \
successfulCommand || true