Skip to content

Commit

Permalink
Resolve unavailable http-builder dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
aindlq committed Dec 5, 2024
1 parent df31a16 commit d9632e2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion buildSrc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,10 @@ repositories {
dependencies {
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation "org._10ne.gradle:rest-gradle-plugin:0.4.2"
implementation 'org.codehaus.groovy.modules.http-builder:http-builder:0.7.1'

// to override 0.7.2 version that is used in rest-gradle-plugin, it is not available on maven central
// see https://discuss.gradle.org/t/artifact-org-codehaus-groovy-modules-http-builder-is-not-found/49155
implementation("org.codehaus.groovy.modules.http-builder:http-builder").version {
strictly("0.7.1")
}
}

0 comments on commit d9632e2

Please sign in to comment.