Skip to content

Commit

Permalink
Fix SBT build (#1024)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsloan authored Jan 4, 2024
1 parent 40b1a16 commit fe05718
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ lazy val `aws-s3` = (project in file("kafka-connect-aws-s3"))
lazy val `azure-datalake` = (project in file("kafka-connect-azure-datalake"))
.dependsOn(common)
.dependsOn(`cloud-common` % "compile->compile;test->test")
.dependsOn(`test-common` % "fun->compile")
.dependsOn(`test-common` % "test->compile")
.settings(
settings ++
Seq(
Expand All @@ -139,7 +139,7 @@ lazy val `azure-datalake` = (project in file("kafka-connect-azure-datalake"))
lazy val `gcp-storage` = (project in file("kafka-connect-gcp-storage"))
.dependsOn(common)
.dependsOn(`cloud-common` % "compile->compile;test->test;it->it")
.dependsOn(`test-common` % "fun->compile;it->compile")
.dependsOn(`test-common` % "test->compile")
.settings(
settings ++
Seq(
Expand Down

0 comments on commit fe05718

Please sign in to comment.