-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathjustfile
More file actions
31 lines (24 loc) · 804 Bytes
/
justfile
File metadata and controls
31 lines (24 loc) · 804 Bytes
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
28
29
30
31
# Default action, performed by running `just` without parameters: shows the actions that are available
default:
@just --list
# Cleans all build artifacts
clean:
mvn clean -Prelease
# Compiles all code and all tests
compile:
mvn test-compile
# Runs all tests, but no static analysis and no release verification tests
test:
mvn test
# Runs all tests, including release verification tests, and also static analysis
verify:
mvn verify -Prelease
# Ensures all code complies with formatting rules
format:
mvn spotless:apply
# Installs EqualsVerifier in local Maven cache, skipping tests and static analysis
local-install:
mvn install -Prelease -DskipTests=true -DdisableStaticAnalysis
# Runs mutation tests
pitest:
mvn clean test org.pitest:pitest-maven:mutationCoverage