Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 872 Bytes

release_process.adoc

File metadata and controls

26 lines (21 loc) · 872 Bytes

Steps to release WildFly Datasources Galleon feature-pack

STEP 1: Prepare and perform the release

First, make sure you don’t have pending changes in your main branch.

  • git pull --rebase upstream main

  • mvn clean install

  • Update the new version

    • mvn versions:set -DnewVersion=<new released version>

    • mvn versions:commit

  • Commit the changes with message: Release X.X.X.Final

  • Deploy in nexus

    • mvn clean deploy -DskipTests

  • Create and push a Tag with the new release.

  • Update to the next release

    • mvn versions:set -DnewVersion=<new X.X.X.Final-SNAPSHOT version>

    • mvn versions:commit

  • Commit the changes with message: New development iteration X.X.X.Final-SNAPSHOT

  • git push upstream main

STEP 2: Release in Nexus