Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 1.29 KB

BUILD.md

File metadata and controls

46 lines (34 loc) · 1.29 KB

VMware Tanzu Application Service > Butler

How to Build

./mvnw clean package

Defaults to H2 in-memory backend

Alternatives

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

./mvnw clean package -Drdbms=mysql

Work with MySQL backend

./mvnw clean package -Drdbms=postgres

Work with Postgres backend

./mvnw clean package -Plog4j2

Swap out default "lossy" logging provider

# Using Cloud Native Buildpacks image
./mvnw spring-boot:build-image -Pnative

# Using pre-installed Graal CE
./mvnw native:compile -Pnative -DskipTests