Skip to content

Commit

Permalink
exclude liquibase
Browse files Browse the repository at this point in the history
  • Loading branch information
lucymcnatt committed Aug 16, 2024
1 parent b364842 commit 646d8b5
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ object Dependencies {
val excludeKms = ExclusionRule(organization = "com.google.cloud", name = s"google-cloud-kms")
val excludeBigQuery = ExclusionRule(organization = "com.google.cloud", name = "google-cloud-bigquery")
val excludeCloudBilling = ExclusionRule(organization = "com.google.cloud", name = "google-cloud-billing")
val excludeOpentelemetrySpringBoot = ExclusionRule(organization = "io.opentelemetry.instrumentation", name = "opentelemetry-spring-boot-2.3.0-alpha")

val jose4j: ModuleID = "org.bitbucket.b_c" % "jose4j" % "0.9.4"

Expand Down Expand Up @@ -109,8 +108,7 @@ object Dependencies {
val workbenchAzureTest: ModuleID = "org.broadinstitute.dsde.workbench" %% "workbench-azure" % workbenchAzureV % "test" classifier "tests"
val workbenchOpenTelemetry: ModuleID = "org.broadinstitute.dsde.workbench" %% "workbench-opentelemetry" % workbenchOpenTelemetryV excludeAll (
excludeIoGrpc,
excludeGuava,
excludeOpentelemetrySpringBoot
excludeGuava
)

val workbenchOpenTelemetryTest: ModuleID = "org.broadinstitute.dsde.workbench" %% "workbench-opentelemetry" % workbenchOpenTelemetryV % Test classifier "tests" excludeAll (excludeGuava)
Expand Down Expand Up @@ -153,9 +151,12 @@ object Dependencies {
def excludeBroadWorkbench = ExclusionRule("org.broadinstitute.dsde.workbench")
def excludePostgresql = ExclusionRule("org.postgresql", "postgresql")
def excludeSnakeyaml = ExclusionRule("org.yaml", "snakeyaml")
def excludeLiquibase = ExclusionRule("org.liquibase", "liquibase-core")


// [IA-4939] commons-text:1.9 is unsafe
def excludeCommonsText = ExclusionRule("org.apache.commons", "commons-text")
def tclExclusions(m: ModuleID): ModuleID = m.excludeAll(excludeSpringBoot, excludeSpringAop, excludeSpringData, excludeSpringFramework, excludeOpenCensus, excludeGoogleFindBugs, excludeBroadWorkbench, excludePostgresql, excludeSnakeyaml, excludeSlf4j, excludeCommonsText, excludeOpentelemetrySpringBoot)
def tclExclusions(m: ModuleID): ModuleID = m.excludeAll(excludeSpringBoot, excludeSpringAop, excludeSpringData, excludeSpringFramework, excludeOpenCensus, excludeGoogleFindBugs, excludeBroadWorkbench, excludePostgresql, excludeSnakeyaml, excludeSlf4j, excludeCommonsText, excludeLiquibase)
val workspaceManager = excludeJakarta("bio.terra" % "workspace-manager-client" % workSpaceManagerV)
val bpm = excludeJakarta("bio.terra" % "billing-profile-manager-client" % bpmV)
val terraCommonLib = tclExclusions(excludeJakarta("bio.terra" % "terra-common-lib" % terraCommonLibV classifier "plain"))
Expand Down

0 comments on commit 646d8b5

Please sign in to comment.