-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Makefile and update gradle.yml accordingly
- Loading branch information
Showing
2 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
run-dist: #запуск программы | ||
./build/install/app/bin/app | ||
|
||
start: | ||
./gradlew run | ||
|
||
build: | ||
./gradlew clean | ||
./gradlew build | ||
|
||
clean: | ||
./gradlew clean | ||
|
||
test: | ||
./gradlew clean | ||
./gradlew test | ||
|
||
report: | ||
./gradlew jacocoTestReport | ||
|
||
lint: | ||
./gradlew checkstyleMain checkstyleTest | ||
|
||
build-run: build run | ||
|
||
.PHONY: build |