Skip to content

Commit

Permalink
RELEASE 1.11.0
Browse files Browse the repository at this point in the history
Merging master to branch to fix conflicts


Former-commit-id: 59185751326fb9fb74704746eac2ab27c6f863b5
  • Loading branch information
chasegawa committed Jul 25, 2022
2 parents a6823b0 + ff42290 commit aa765c1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,14 @@ release {

afterReleaseBuild.dependsOn project.getTasksByName('githubRelease', false)
afterReleaseBuild.dependsOn project.getTasksByName('dockerTagsPush', true)

// force log4j version
allprojects {
configurations.all {
resolutionStrategy.eachDependency { d ->
if (d.requested.group == 'org.apache.logging.log4j') {
d.useVersion project.'log4j.version'
}
}
}
}

0 comments on commit aa765c1

Please sign in to comment.