Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • All Unit tests must pass (e.g. a stock-build of the top-level project works without errors).
  • The Te load.bat/csh script must successfully load the dev environment into a database
  • The integration tests must pass running against a database/server containing the stock dev environment
  • The mojo integration tests must pass running against an empty test database.
  • The "entire" snapshot/full SNOMED loads must complete without running out of memory on a machine with 8GB of RAM in reasonable time.

Performing a Maven Release

Maven release is handled with jgitflow.  There are two parts

Starting a release involves passing the release version, the next dev version, and a flag about auto versioning submodules.

Code Block
cd <top level project>
mvn jgitflow:release-start -DautoVersionSubmodules=true -DreleaseVersion=0.9.0.RELEASE -DdevelopmentVersion=1.0.0-SNAPSHOT -DpushReleases=true

This can also be done in Eclipse like this:

Image Added

If all goes well, the next step is to finish the release, like this:

Code Block
# release start must already have been run
cd <top level project>
mvn jgitflow:release-finish -DautoVersionSubmodules=true -DpushReleases=true

 

This also can be done in Eclipse as follows:

Image Added

 

The end result of the release process is

  • A new branch named after the release (with the release version) pushed to upstream origin
  • An updated development version set for all modules.

 

  • n/a