We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
javadoc
lint
1 parent 8ab8c55 commit 0da24abCopy full SHA for 0da24ab
1 file changed
Makefile
@@ -60,3 +60,11 @@ inc_major: ## Increment the major version on pom.xml
60
version: ## Show the current version of the package
61
@echo "Getting package version..."
62
VER=$(shell ./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout)
63
+
64
+javadoc: ## Run javadoc to check for documentation errors
65
+ @echo "Running javadoc check..."
66
+ ./mvnw javadoc:javadoc
67
68
+lint: ## Run checkstyle or other linting tools
69
+ @echo "Running lint checks..."
70
+ ./mvnw checkstyle:check
0 commit comments