Skip to content

Commit

Permalink
Update versions and use io.github.rburgst instead of com.burgstaller …
Browse files Browse the repository at this point in the history
…for okhttp-digest (#1709)
  • Loading branch information
ajothomas authored Oct 1, 2024
1 parent a52ef9d commit 56c6267
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ buildscript {
mavenCentral()
}

configurations.classpath {
resolutionStrategy.eachDependency { 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'
}
}
}

apply from: file('gradle/buildscript.gradle'), to: buildscript
}

Expand Down
1 change: 1 addition & 0 deletions gradle/buildscript.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ dependencies {
classpath 'de.obqo.gradle:gradle-lesscss-plugin:1.0-1.3.3'
classpath 'com.bmuschko:gradle-nexus-plugin:2.3.1'
classpath 'com.github.jruby-gradle:jruby-gradle-plugin:2.0.2'
classpath 'org.ysb33r.gradle:grolifant:0.12.1'
}

0 comments on commit 56c6267

Please sign in to comment.