Skip to content

Commit

Permalink
Add more make commands.
Browse files Browse the repository at this point in the history
  • Loading branch information
bretthoerner committed Feb 13, 2017
1 parent 4245119 commit 72ec8dc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Makefile
@@ -1,15 +1,20 @@
.PHONY: checkstyle test install clean prepare prepareDocs prepareMvn prepareChanges perform
.PHONY: checkstyle compile test install clean prepare prepareDocs prepareMvn prepareChanges perform verify

MVN=mvn -e

all: checkstyle test install

compile:
$(MVN) compile

checkstyle:
$(MVN) checkstyle:check

test:
verify:
$(MVN) verify

test: verify

install:
$(MVN) install -Dcheckstyle.skip=true -DskipTests

Expand Down

0 comments on commit 72ec8dc

Please sign in to comment.