Skip to content

Commit

Permalink
exclude telem from tcl
Browse files Browse the repository at this point in the history
  • Loading branch information
lucymcnatt committed Aug 14, 2024
1 parent eaced2f commit 8c3d059
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ 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("io.opentelemetry", "opentelemetry-exporter-otlp")

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

Expand Down Expand Up @@ -109,6 +110,7 @@ object Dependencies {
val workbenchOpenTelemetry: ModuleID = "org.broadinstitute.dsde.workbench" %% "workbench-opentelemetry" % workbenchOpenTelemetryV excludeAll (
excludeIoGrpc,
excludeGuava)

val workbenchOpenTelemetryTest: ModuleID = "org.broadinstitute.dsde.workbench" %% "workbench-opentelemetry" % workbenchOpenTelemetryV % Test classifier "tests" excludeAll (excludeGuava)

val helmScalaSdk: ModuleID = "org.broadinstitute.dsp" %% "helm-scala-sdk" % helmScalaSdkV
Expand Down Expand Up @@ -151,7 +153,7 @@ object Dependencies {
def excludeSnakeyaml = ExclusionRule("org.yaml", "snakeyaml")
// [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)
def tclExclusions(m: ModuleID): ModuleID = m.excludeAll(excludeSpringBoot, excludeSpringAop, excludeSpringData, excludeSpringFramework, excludeOpenCensus, excludeGoogleFindBugs, excludeBroadWorkbench, excludePostgresql, excludeSnakeyaml, excludeSlf4j, excludeCommonsText, excludeOpenTelemetrySpringBoot)
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 8c3d059

Please sign in to comment.