Skip to content

Commit

Permalink
CI updates for Apache 10 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigonull committed Jun 19, 2024
1 parent 1ab53ab commit cb22e5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .ci/jenkins/config/branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ maven:
creds_id: TO_DEFINE
cloud:
image:
registry_credentials: quay_kiegroup_registry_token
registry: quay.io
namespace: kiegroup
registry_credentials: <TO-BE-DEFINED>
registry: docker.io
namespace: apache
latest_git_branch: main
release:
gpg:
Expand Down
3 changes: 2 additions & 1 deletion jenkins-pipeline-shared-libraries/vars/maven.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,13 @@ def mvnVersionsSet(String newVersion, boolean allowSnapshots = false) {
mvnVersionsSet(new MavenCommand(this), newVersion, allowSnapshots)
}

def mvnVersionsSet(MavenCommand mvnCmd, String newVersion, boolean allowSnapshots = false) {
def mvnVersionsSet(MavenCommand mvnCmd, String newVersion, boolean allowSnapshots = false, boolean processAllModules = true) {
mvnCmd.clone()
.withOptions(['-N', '-e'])
.withProperty('full')
.withProperty('newVersion', newVersion)
.withProperty('allowSnapshots', allowSnapshots)
.withProperty('processAllModules', processAllModules)
.withProperty('generateBackupPoms', false)
.run('versions:set')
}
Expand Down

0 comments on commit cb22e5c

Please sign in to comment.