Skip to content

Commit 73757e6

Browse files
Fix Makefile
1 parent 6c63d0a commit 73757e6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
11
.DEFAULT_GOAL := build-run
22

3+
define SPRING_PROFILES_ACTIVE
4+
dev
5+
endef
6+
37
clean:
48
./gradlew clean
59
lint:
610
./gradlew checkstyleMain checkstyleTest
711
build:
812
./gradlew clean build
913
run:
10-
./gradlew run --args='--spring.profiles.active=dev'
14+
./gradlew run
1115
test:
1216
./gradlew test
1317
report:
14-
./gradlew jacocoTestReport
18+
./gradlew jacocoTestReport
1519

1620
build-run: build run

0 commit comments

Comments
 (0)