We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
javadoc
lint
1 parent 8ab8c55 commit 0da24abCopy full SHA for 0da24ab
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