Skip to content

Commit

Permalink
FINERACT-2108: Fix gradle build error
Browse files Browse the repository at this point in the history
  • Loading branch information
HarimbolaSantatra committed Aug 23, 2024
1 parent 3456e1e commit 5fe579f
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 @@ -84,6 +84,17 @@ buildscript {
classpath 'io.swagger.core.v3:swagger-jaxrs2-jakarta:2.2.22'
classpath 'jakarta.servlet:jakarta.servlet-api:6.0.0'
}


configurations.classpath {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.group == 'com.burgstaller' && details.requested.name == 'okhttp-digest' && details.requested.version == '1.10') {
details.useTarget "io.github.rburgst:${details.requested.name}:1.21"
details.because 'Dependency has moved'
}
}
}

}

plugins {
Expand Down

0 comments on commit 5fe579f

Please sign in to comment.