Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman3455 committed Dec 29, 2024
1 parent 83b1893 commit 187eb00
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,18 @@ clean:
./gradlew clean
build:
./gradlew build
installDist:
./gradlew installDist
dev:
./gradlew run
lint:
./gradlew checkstyleMain
test:
./gradlew test
report:
./gradlew jacocoTestReport
lint:
./gradlew checkstyleMain checkstyleTest
start:
./gradlew run

build-run: clean build lint test report
start: dev
build-run: clean build installDist dev lint test report

.PHONY: build
.PHONY: build

0 comments on commit 187eb00

Please sign in to comment.