diff --git a/build.gradle b/build.gradle index fdd76aab3..ec63484a7 100644 --- a/build.gradle +++ b/build.gradle @@ -74,6 +74,13 @@ subprojects { project -> testRuntimeOnly("org.junit.vintage:junit-vintage-engine") testRuntimeOnly("org.objenesis:objenesis") } + // Keep this constraint till all other components get bumped up to this version and subsequently updated in the kork. + configurations.all { + resolutionStrategy.force 'com.google.apis:google-api-services-storage:v1-rev20200326-1.30.9' + resolutionStrategy.force 'com.google.auth:google-auth-library-oauth2-http:0.20.0' + // TODO(plumpy): remove version once added to kork + resolutionStrategy.force 'com.google.cloud:google-cloud-storage:1.108.0' + } } } diff --git a/front50-gcs/front50-gcs.gradle b/front50-gcs/front50-gcs.gradle index ef34bb17e..36b6ff658 100644 --- a/front50-gcs/front50-gcs.gradle +++ b/front50-gcs/front50-gcs.gradle @@ -42,10 +42,3 @@ dependencies { testImplementation "io.mockk:mockk" testImplementation "org.junit.jupiter:junit-jupiter-api" } - -configurations.all { - resolutionStrategy.force 'com.google.apis:google-api-services-storage:v1-rev20200326-1.30.9' - resolutionStrategy.force 'com.google.auth:google-auth-library-oauth2-http:0.20.0' - // TODO(plumpy): remove version once added to kork - resolutionStrategy.force 'com.google.cloud:google-cloud-storage:1.108.0' -}