Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion flink-shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,12 @@
</transformers>
<artifactSet>
<excludes>
<exclude>org.scala-lang:scala-library</exclude>
<!-- Never bundle the Scala toolchain (scala-library, scala-reflect,
scala-compiler): the runtime provides its own, and an unrelocated
copy shadows it, breaking Scala-compiler users such as
almond/Ammonite kernels. The groupId match is exact, so
org.scala-lang.modules artifacts are still bundled. -->
<exclude>org.scala-lang:*</exclude>
</excludes>
</artifactSet>
<relocations>
Expand Down
7 changes: 6 additions & 1 deletion snowflake/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,12 @@
</transformers>
<artifactSet>
<excludes>
<exclude>org.scala-lang:scala-library</exclude>
<!-- Never bundle the Scala toolchain (scala-library, scala-reflect,
scala-compiler): the runtime provides its own, and an unrelocated
copy shadows it, breaking Scala-compiler users such as
almond/Ammonite kernels. The groupId match is exact, so
org.scala-lang.modules artifacts are still bundled. -->
<exclude>org.scala-lang:*</exclude>
</excludes>
</artifactSet>
<relocations>
Expand Down
7 changes: 6 additions & 1 deletion spark-shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,12 @@
</transformers>
<artifactSet>
<excludes>
<exclude>org.scala-lang:scala-library</exclude>
<!-- Never bundle the Scala toolchain (scala-library, scala-reflect,
scala-compiler): the runtime provides its own, and an unrelocated
copy shadows it, breaking Scala-compiler users such as
almond/Ammonite kernels. The groupId match is exact, so
org.scala-lang.modules artifacts are still bundled. -->
<exclude>org.scala-lang:*</exclude>
<exclude>org.apache.commons:commons-*</exclude>
<exclude>commons-pool:commons-pool</exclude>
<exclude>commons-io:commons-io</exclude>
Expand Down
Loading