Skip to content

Commit

Permalink
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions flink-connectors/flink-avro/pom.xml
Original file line number Diff line number Diff line change
@@ -174,6 +174,35 @@ under the License.
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<id>shade-flink</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration combine.self="override">
<dependencyReducedPomLocation>${project.basedir}/target/dependency-reduced-pom.xml</dependencyReducedPomLocation>
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
<artifactSet>
<includes>
<include>org.codehaus.jackson:*</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.codehaus.jackson</pattern>
<shadedPattern>org.apache.flink.avro.shaded.org.codehouse.jackson</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>

<pluginManagement>

0 comments on commit dbaf262

Please sign in to comment.