diff --git a/automation/project/Dependencies.scala b/automation/project/Dependencies.scala index f16d4b47f..61ebbd64f 100644 --- a/automation/project/Dependencies.scala +++ b/automation/project/Dependencies.scala @@ -7,17 +7,17 @@ object Dependencies { val jacksonHotfixV = "2.13.4.2" // for when only some of the Jackson libs have hotfix releases val akkaV = "2.6.19" val akkaHttpV = "10.2.10" - val workbenchLibsHash = "1174fb6" + val workbenchLibsHash = "8ccaa6d" - val workbenchModelV = s"0.15-$workbenchLibsHash" + val workbenchModelV = s"0.19-$workbenchLibsHash" val workbenchModel: ModuleID = "org.broadinstitute.dsde.workbench" %% "workbench-model" % workbenchModelV val excludeWorkbenchModel = ExclusionRule(organization = "org.broadinstitute.dsde.workbench", name = "workbench-model_" + scalaV) - val workbenchGoogleV = s"0.22-$workbenchLibsHash" + val workbenchGoogleV = s"0.30-$workbenchLibsHash" val workbenchGoogle: ModuleID = "org.broadinstitute.dsde.workbench" %% "workbench-google" % workbenchGoogleV excludeAll excludeWorkbenchModel val excludeWorkbenchGoogle = ExclusionRule(organization = "org.broadinstitute.dsde.workbench", name = "workbench-google_" + scalaV) - val workbenchServiceTestV = s"4.0-e42c23c" + val workbenchServiceTestV = s"4.2-$workbenchLibsHash" val workbenchServiceTest: ModuleID = "org.broadinstitute.dsde.workbench" %% "workbench-service-test" % workbenchServiceTestV % "test" classifier "tests" excludeAll (excludeWorkbenchGoogle, excludeWorkbenchModel) // Overrides for transitive dependencies. These apply - via Settings.scala - to all projects in this codebase.