Skip to content
Adrian Wilke edited this page Jul 22, 2020 · 3 revisions

How to publish a new version

  • pom.xml: Remove -SNAPSHOT from <version>
  • Commit + Push
  • git tag <version>
  • git push origin <version>
  • Create jar (see below)
  • pom.xml: Increase version and add -SNAPSHOT in <version>
  • Commit + Push

How to publish a major version

Before increasing the version and adding -SNAPSHOT:
Run mvn package and backup target/opal-batch.jar.
It should be added as "binary" to the respective release.

Clone this wiki locally