-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
27 lines (21 loc) · 777 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Typically this should be set in shell settings, but committed here
# just to serve as an example.
export ENCRYPTION_KEY = RERuZTVvYm5mSDFSU2VUZzcxeFNaZw
# Compiles the code.
build:
./gradlew build
# Compiles the code and pushes the artifacts to the local maven repository.
install:
./gradlew build publishToMavenLocal
# Runs tests without any coverage checks.
test:
./gradlew test
lock:
./gradlew generateLock saveLock
# Runs tests, enforces the 100% coverage requirement and creates an aggregated
# coverage report across all projects in this repository, which can be seen
# under project-coverage/build/reports/jacoco/testCodeCoverageReport/html/index.html.
verify:
./gradlew test jacocoTestCoverageVerification testCodeCoverageReport
run:
./gradlew quarkusDev