Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengchenyu committed Nov 11, 2024
1 parent 082756a commit b7f42cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion client-spark/spark2-shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@
type="glob"></mapper>
</move>
<delete dir="${project.build.directory}/unpacked/META-INF/license"/>
<move file="${project.build.directory}/unpacked/META-INF/LICENSE-binary"
<move failonerror="false" quiet="true"
file="${project.build.directory}/unpacked/META-INF/LICENSE-binary"
tofile="${project.build.directory}/unpacked/META-INF/LICENSE"/>
<!-- Delete our NettyUtils to avoid errors like NoSuchMethodError, let Spark use its own NettyUtils -->
<!-- See https://github.com/apache/incubator-uniffle/pull/1565 for more details -->
Expand Down
3 changes: 2 additions & 1 deletion client-spark/spark3-shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@
type="glob"></mapper>
</move>
<delete dir="${project.build.directory}/unpacked/META-INF/license"/>
<move file="${project.build.directory}/unpacked/META-INF/LICENSE-binary"
<move failonerror="false" quiet="true"
file="${project.build.directory}/unpacked/META-INF/LICENSE-binary"
tofile="${project.build.directory}/unpacked/META-INF/LICENSE"/>
<echo message="repackaging netty jar"></echo>
<jar destfile="${project.build.directory}/${project.artifactId}-${project.version}.jar"
Expand Down

0 comments on commit b7f42cb

Please sign in to comment.