16 lines
420 B
Makefile
16 lines
420 B
Makefile
.PHONY: build lint format # always run
|
|
|
|
build:
|
|
mvn --version
|
|
mvn -U -T12C clean package
|
|
|
|
# Analyze code for errors, potential issues, and coding standard violations.
|
|
# Reports problems but does not modify the code.
|
|
lint:
|
|
mvn -T12C -Pspotless spotless:check
|
|
|
|
# Automatically format the code to conform to a style guide.
|
|
# Modifies the code to ensure consistent formatting.
|
|
format:
|
|
mvn -T12C -Pspotless spotless:apply
|