Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 899 Bytes

File metadata and controls

22 lines (12 loc) · 899 Bytes

Java and Maven Strategies

This strategy generates SNAPSHOT versions after each release. Snapshot is created as separate "release" Pull Request, which updates all affected files, but does not create actual release or tag.

Snapshot bumps have autorelease: snapshot label.

java Strategy

General-purpose Java strategy, that does not update any files on its own.

Uses extra-files to bump versions in actual files. For typical Maven project, use maven strategy instead.

maven Strategy

Updates all found pom.xml files (recursively) using pom updater.

pom Updater

Updates /project/version to current version automatically.

If version is not set, it tries to update /project/parent/version, assuming it is submodule which inherits version from its parent and should be bumped too. If this behavior is not intended, use generic or xml updater via extra-files.