Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Dirigible/Infrastructure/Update Release

Update Release

Procedure


  1. Verify the Codebase
   mvn clean install
   mvn javadoc:javadoc
  1. Change Version for Release
   mvn versions:set -DnewVersion=3.0.2
   mvn clean install
   git add .
   git commit -m "version set to 3.0.2 for release"
   git push
  1. Create Branch
  2. Build Release
  3. Update Downloads
  4. Update Trial
  1. Upload to Maven Central
   mvn javadoc:javadoc
   mvn deploy -P release -DskipTests
   https://oss.sonatype.org/#nexus-search;quick~dirigible  -> close & release
  1. Change Version for Development
   mvn versions:set -DnewVersion=3.0.3-SNAPSHOT
   mvn clean install
   git add .
   git commit -m "version set to 3.0.3-SNAPSHOT for development"
   git push
  1. Create News Article
  2. Mail to dirigible-dev@eclipse.org
  3. Share via social media
  4. Beer

Back to the top