Skip to content

Commit b624d57

Browse files
committed
Update Makefile to change default target from 'package' to 'install'
1 parent f539fe8 commit b624d57

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
MVN = ./mvnw
66

77
# Default target
8-
all: package
8+
all: install
99

1010
# Build the project (clean and package without tests)
1111
build: clean package
@@ -14,6 +14,9 @@ build: clean package
1414
clean:
1515
$(MVN) clean
1616

17+
install:
18+
$(MVN) install -DskipTests
19+
1720
# Package the project without running tests
1821
package:
1922
$(MVN) package -DskipTests

0 commit comments

Comments
 (0)