Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 942 Bytes

build_yarn_application.adoc

File metadata and controls

42 lines (33 loc) · 942 Bytes

Build the Application

For gradle simply execute the clean and build tasks.

./gradlew clean build

To skip existing tests if any:

./gradlew clean build -x test

For maven simply execute the clean and package goals.

mvn clean package

To skip existing tests if any:

mvn clean package -DskipTests=true

Below listing shows files after a succesfull gradle build.

dist/target/dist/client-0.1.0.jar
dist/target/dist/appmain-0.1.0.jar
dist/target/dist/container-0.1.0.jar