Skip to content

Commit 0da24ab

Browse files
committed
chore(SP-2487): add javadoc and lint to Makefile
1 parent 8ab8c55 commit 0da24ab

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,11 @@ inc_major: ## Increment the major version on pom.xml
6060
version: ## Show the current version of the package
6161
@echo "Getting package version..."
6262
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

Comments
 (0)