Stylianos Gakis
09/25/2025, 10:25 AMimplementation(platform(libs.okhttp.bom)) in all places where I add any okhttp dependency?
Conceptually, something like
subprojects {
dependencies {
implementation(platform(libs.okhttp...
but I can't seem to find the proper way to do this.Martin
09/25/2025, 10:30 AMStylianos Gakis
09/25/2025, 10:31 AMimplementation(platform(libs.ok as a common configuration to my convention plugin which I have hopefully applied to all of my projects already, right?Martin
09/25/2025, 10:31 AMMartin
09/25/2025, 10:32 AMStylianos Gakis
09/25/2025, 10:33 AMimplementation does not seem to resolve there if I am seeing correctly. I just wrote it as pseudocode to convey what I wanted to be done 😄Martin
09/25/2025, 10:34 AMsubprojects {
dependencies {
add("implementation", platform(libs.okhttp...))Martin
09/25/2025, 10:34 AMString under the hoodMartin
09/25/2025, 10:35 AMString code is just easier and fasterVampire
09/25/2025, 10:58 AMVampire
09/25/2025, 10:59 AMVampire
09/25/2025, 11:01 AMThomas Broyer
09/25/2025, 11:11 AM