Skip to content

Commit

Permalink
Fix missing dependencies in 2.12
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones committed Dec 6, 2023
1 parent 0d41473 commit 01bf584
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,7 @@ val commonSettings = Def.settings(
}
},
unusedCompileDependenciesFilter -= Seq(
moduleFilter("com.chuusai", "shapeless"),
moduleFilter("org.scala-lang", "scala-reflect"),
moduleFilter("org.scala-lang.modules", "scala-collection-compat"),
moduleFilter("org.typelevel", "scalac-compat-annotation")
Expand Down Expand Up @@ -768,6 +769,7 @@ lazy val `scio-google-cloud-platform` = project
"org.apache.beam" % "beam-sdks-java-extensions-google-cloud-platform-core" % beamVersion,
"org.apache.beam" % "beam-sdks-java-io-google-cloud-platform" % beamVersion,
"org.apache.beam" % "beam-vendor-guava-26_0-jre" % beamVendorVersion,
"org.scala-lang.modules" %% "scala-collection-compat" % scalaCollectionCompatVersion,
"org.slf4j" % "slf4j-api" % slf4jVersion,
// test
"com.google.cloud" % "google-cloud-storage" % googleCloudStorageVersion % Test,
Expand Down Expand Up @@ -884,6 +886,7 @@ lazy val `scio-extra` = project
.settings(
description := "Scio extra utilities",
libraryDependencies ++= Seq(
"com.chuusai" %% "shapeless" % shapelessVersion,
"com.google.apis" % "google-api-services-bigquery" % googleApiServicesBigQueryVersion,
"com.google.protobuf" % "protobuf-java" % protobufVersion,
"com.google.zetasketch" % "zetasketch" % zetasketchVersion,
Expand Down Expand Up @@ -937,13 +940,15 @@ lazy val `scio-grpc` = project
unusedCompileDependenciesFilter -= moduleFilter("com.google.protobuf", "protobuf-java"),
libraryDependencies ++= Seq(
// compile
"com.chuusai" %% "shapeless" % shapelessVersion,
"com.google.guava" % "failureaccess" % failureAccessVersion,
"com.google.guava" % "guava" % guavaVersion,
"com.twitter" %% "chill" % chillVersion,
"io.grpc" % "grpc-api" % grpcVersion,
"io.grpc" % "grpc-stub" % grpcVersion,
"org.apache.beam" % "beam-sdks-java-core" % beamVersion,
"org.apache.commons" % "commons-lang3" % commonsLang3Version,
"org.scala-lang.modules" %% "scala-collection-compat" % scalaCollectionCompatVersion,
// test
"io.grpc" % "grpc-netty" % grpcVersion % Test
)
Expand All @@ -965,6 +970,7 @@ lazy val `scio-jdbc` = project
"joda-time" % "joda-time" % jodaTimeVersion,
"org.apache.beam" % "beam-sdks-java-core" % beamVersion,
"org.apache.beam" % "beam-sdks-java-io-jdbc" % beamVersion,
"org.scala-lang.modules" %% "scala-collection-compat" % scalaCollectionCompatVersion,
"org.slf4j" % "slf4j-api" % slf4jVersion
)
)
Expand Down Expand Up @@ -1323,6 +1329,7 @@ lazy val `scio-smb` = project
).reduce(_ | _),
libraryDependencies ++= Seq(
// compile
"com.chuusai" %% "shapeless" % shapelessVersion,
"com.fasterxml.jackson.core" % "jackson-annotations" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-core" % jacksonVersion,
"com.fasterxml.jackson.core" % "jackson-databind" % jacksonVersion,
Expand Down Expand Up @@ -1386,6 +1393,7 @@ lazy val `scio-redis` = project
description := "Scio integration with Redis",
libraryDependencies ++= Seq(
// compile
"com.chuusai" %% "shapeless" % shapelessVersion,
"com.softwaremill.magnolia1_2" %% "magnolia" % magnoliaVersion,
"joda-time" % "joda-time" % jodaTimeVersion,
"org.apache.beam" % "beam-sdks-java-core" % beamVersion,
Expand Down

0 comments on commit 01bf584

Please sign in to comment.