Skip to content

Commit

Permalink
pin bcel version to 6.6.1 (#270) (#279)
Browse files Browse the repository at this point in the history
Signed-off-by: Filip Drobnjakovic <[email protected]>
  • Loading branch information
Tjofil authored Jan 26, 2023
1 parent 5e95e1b commit 1564b14
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 @@ -355,6 +355,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 1564b14

Please sign in to comment.