Skip to content

Commit

Permalink
Merge pull request #105 from lensesio-dev/fix/remove-shading-avro
Browse files Browse the repository at this point in the history
Remove shading for avro to allow enums to be translated correctly
  • Loading branch information
andrewstevenson authored Sep 20, 2024
2 parents 42fa2c8 + 5f6a66e commit 0d9b504
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project/Settings.scala
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ object Settings extends Dependencies {
case _ => MergeStrategy.first
},
assembly / assemblyShadeRules ++= Seq(
ShadeRule.rename("org.apache.avro.**" -> "lshaded.apache.avro.@1").inAll,
ShadeRule.rename("io.confluent.**" -> "lshaded.confluent.@1").inAll,
// ShadeRule.rename("org.apache.avro.**" -> "lshaded.apache.avro.@1").inAll,
// ShadeRule.rename("io.confluent.**" -> "lshaded.confluent.@1").inAll,
ShadeRule.rename("com.fasterxml.**" -> "lshaded.fasterxml.@1").inAll,
ShadeRule.rename("org.apache.hadoop" -> "lshaded.apache.hadoop").inAll,
ShadeRule.rename("org.antlr.**" -> "lshaded.antlr.@1").inAll,
Expand Down

0 comments on commit 0d9b504

Please sign in to comment.