Skip to content

Commit 5f4c567

Browse files
committed
release: release regular, non-shaded pom.xml
After updating `maven-shade-plugin` it start populating shaded pom file, instead of regular one. As result shaded dependencies are not resolved for rugular jar. To fix it we make `maven-shade-plugin` to not produce shaded pom, which fixes the problem, but also makes shaded jar contain non-shaded pom.xml, which is not big deal.
1 parent 92e8315 commit 5f4c567

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

driver-core/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@
295295
<artifactId>maven-shade-plugin</artifactId>
296296
<configuration>
297297
<shadedArtifactAttached>true</shadedArtifactAttached>
298+
<createDependencyReducedPom>false</createDependencyReducedPom>
298299
<artifactSet>
299300
<includes>
300301
<include>io.netty:*</include>

0 commit comments

Comments
 (0)