Skip to content

Commit

Permalink
pin bcel version to 6.6.1 (opensearch-project#270)
Browse files Browse the repository at this point in the history
Signed-off-by: Filip Drobnjakovic <[email protected]>

Signed-off-by: Filip Drobnjakovic <[email protected]>
  • Loading branch information
Tjofil committed Jan 24, 2023
1 parent ab894f5 commit 64b3126
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,16 @@ dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.12'
}

configurations.each {
c -> c.resolutionStrategy.dependencySubstitution {
all { DependencySubstitution dependency ->
if (dependency.requested.group == 'org.apache.bcel') {
dependency.useTarget 'org.apache.bcel:bcel:6.6.1'
}
}
}
}

protobuf {
protoc {
artifact = "com.google.protobuf:protoc:3.21.12"
Expand Down

0 comments on commit 64b3126

Please sign in to comment.