Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.11 KB

BUILD.md

File metadata and controls

31 lines (21 loc) · 1.11 KB

VMware Tanzu Application Service > Hoover UI

How to Build

./mvnw --batch-mode --update-snapshots -DskipTests -Pproduction verify

Alternatives

The below represent a collection of Maven profiles available in the Maven POM.

./mvnw --batch-mode --update-snapshots -DskipTests -Pproduction,log4j2 verify

Swap out default "lossy" logging provider

# Using Cloud Native Buildpacks image
./mvnw spring-boot:build-image -Pnative --batch-mode --update-snapshots -DskipTests -Pproduction

# Using pre-installed Graal CE
./mvnw native:compile --batch-mode --update-snapshots -DskipTests -Pproduction -Pnative