Skip to content

Commit

Permalink
WX-1101 Update library versions to support batch (#7155)
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Nichols <[email protected]>
Co-authored-by: Janet Gainer-Dewar <[email protected]>
  • Loading branch information
3 people authored Jul 6, 2023
1 parent 8a1297f commit 4ea3a05
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ class GcsPathBuilderSpec extends TestKitSuite with AnyFlatSpecLike with Matchers
val storageOptionsField = cloudFilesystemProvider.getClass.getDeclaredField("storageOptions")
storageOptionsField.setAccessible(true)
val storageOptions = storageOptionsField.get(cloudFilesystemProvider)
val credentialsField = storageOptions.getClass.getSuperclass.getDeclaredField("credentials")
val credentialsField = storageOptions.getClass.getSuperclass.getSuperclass.getDeclaredField("credentials")
credentialsField.setAccessible(true)
credentialsField.get(storageOptions).asInstanceOf[Credentials]
}
Expand Down
18 changes: 9 additions & 9 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,24 +42,24 @@ object Dependencies {
private val diffsonSprayJsonV = "4.1.1"
private val ficusV = "1.5.2"
private val fs2V = "2.5.9" // scala-steward:off (CROM-6564)
private val googleApiClientV = "1.33.2"
private val googleCloudBigQueryV = "2.10.0"
private val googleApiClientV = "2.1.4"
private val googleCloudBigQueryV = "2.25.0"
// latest date via: https://github.com/googleapis/google-api-java-client-services/blob/main/clients/google-api-services-cloudkms/v1.metadata.json
private val googleCloudKmsV = "v1-rev20220104-1.32.1"
private val googleCloudKmsV = "v1-rev20230421-2.0.0"
private val googleCloudMonitoringV = "3.2.5"
private val googleCloudNioV = "0.124.8"
private val googleCloudStorageV = "2.9.2"
private val googleGaxGrpcV = "2.19.0"
private val googleCloudStorageV = "2.17.2"
private val googleGaxGrpcV = "2.25.0"
// latest date via: https://mvnrepository.com/artifact/com.google.apis/google-api-services-genomics
private val googleGenomicsServicesV2Alpha1ApiV = "v2alpha1-rev20210811-1.32.1"
private val googleHttpClientApacheV = "2.1.2"
private val googleHttpClientV = "1.38.0"
private val googleHttpClientV = "1.42.3"
// latest date via: https://mvnrepository.com/artifact/com.google.apis/google-api-services-lifesciences
private val googleLifeSciencesServicesV2BetaApiV = "v2beta-rev20210813-1.32.1"
private val googleLifeSciencesServicesV2BetaApiV = "v2beta-rev20220916-2.0.0"
private val googleOauth2V = "1.5.3"
private val googleOauthClientV = "1.33.1"
private val googleCloudResourceManagerV = "1.2.5"
private val grpcV = "1.45.1"
private val googleCloudResourceManagerV = "1.17.0"
private val grpcV = "1.54.1"
private val guavaV = "31.0.1-jre"
private val heterodonV = "1.0.0-beta3"
private val hsqldbV = "2.6.1"
Expand Down

0 comments on commit 4ea3a05

Please sign in to comment.