forked from strimzi/strimzi-kafka-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.maven
More file actions
31 lines (25 loc) · 677 Bytes
/
Makefile.maven
File metadata and controls
31 lines (25 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Makefile.maven contains the shared tasks for building Java applications. This file is
# included into the Makefile files which contain some Java sources which should be build
.PHONY: java_compile
java_compile:
echo "Building JAR file ..."
mvn $(MVN_ARGS) compile
.PHONY: java_verify
java_verify:
echo "Building JAR file ..."
mvn $(MVN_ARGS) verify
.PHONY: java_package
java_package:
echo "Packaging project ..."
mvn $(MVN_ARGS) package
.PHONY: java_install
java_install:
echo "Installing JAR files ..."
mvn $(MVN_ARGS) install
.PHONY: java_clean
java_clean:
echo "Cleaning Maven build ..."
mvn clean
.PHONY: spotbugs
spotbugs:
mvn $(MVN_ARGS) spotbugs:check