Skip to content

Commit 358d4cb

Browse files
create app/Makefile
1 parent c8f1cb9 commit 358d4cb

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

app/Makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
build:
2+
./gradlew clean build
3+
run-install:
4+
./gradlew clean install
5+
run-dist:
6+
./build/install/app/bin/app
7+
run:
8+
./gradlew run
9+
test:
10+
./gradlew test
11+
report:
12+
./gradlew jacocoTestReport
13+
lint:
14+
./gradlew checkstyleMain
15+
16+
.PHONY: build

0 commit comments

Comments
 (0)