Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 762 Bytes

COMMANDS.md

File metadata and controls

20 lines (13 loc) · 762 Bytes

Commands

Overview of the commands to test, run, build and release this project.

Prerequisites

Build

  • mvn clean verify Builds the project and runs all tests including integration tests
  • mvn clean verify --activate-profiles native Builds the project as a native image and runs all tests including integration tests

Release (Maintainer only)

  • mvn clean Starts off clean
  • mvn release:prepare Prepares a new version
  • mvn release:perform Performs the publish-ready release including tag and version number increment
  • git push–tags Pushes the newly created tag to the remote repository
  • git push origin master Pushes code changes (pom) to the remote repository