Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AJ-1514: update workbench-libs hash for automation subdir #1263

Merged
merged 1 commit into from
Dec 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions automation/project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading