Skip to content

Commit 3545b23

Browse files
Add Makefiles
1 parent 810ba16 commit 3545b23

2 files changed

Lines changed: 32 additions & 0 deletions

File tree

Makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.PHONY: build
2+
.DEFAULT_GOAL := build-run
3+
4+
clean:
5+
make -C app clean
6+
lint:
7+
make -C app lint
8+
build:
9+
make -C app build
10+
test:
11+
make -C app test
12+
report:
13+
make -C app report
14+
update-deps:
15+
make -C app update-deps
16+
build-run: build run

app/Makefile

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

0 commit comments

Comments
 (0)