Skip to content

Commit

Permalink
fix: exclude netty
Browse files Browse the repository at this point in the history
  • Loading branch information
mhamilton723 committed Jan 5, 2022
1 parent 6a1142e commit 621cb3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ lazy val vw = (project in file("vw"))


val cognitiveExcludes = Seq(
ExclusionRule("io.projectreactor.netty")
ExclusionRule("io.projectreactor.netty", "reactor-netty")
)

lazy val cognitive = (project in file("cognitive"))
Expand All @@ -318,8 +318,8 @@ lazy val cognitive = (project in file("cognitive"))
libraryDependencies ++= Seq(
"com.microsoft.cognitiveservices.speech" % "client-sdk" % "1.14.0",
"com.azure" % "azure-storage-blob" % "12.8.0", // can't upgrade higher due to conflict with jackson-databind
("com.azure" % "azure-ai-textanalytics" % "5.1.4") excludeAll (cognitiveExcludes: _*),
),
"com.azure" % "azure-ai-textanalytics" % "5.1.4",
).map( d => d excludeAll (cognitiveExcludes: _*)),
resolvers += speechResolver,
name := "synapseml-cognitive"
): _*)
Expand Down

0 comments on commit 621cb3c

Please sign in to comment.