Skip to content
This repository was archived by the owner on Oct 25, 2025. It is now read-only.

Commit 922258e

Browse files
committed
[GIT]
1 parent b6e947d commit 922258e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

org.eclipse.jgit.telemetry/pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,31 @@
5959
<verbose>true</verbose>
6060
</configuration>
6161
</plugin>
62+
63+
<plugin>
64+
<groupId>org.apache.maven.plugins</groupId>
65+
<artifactId>maven-shade-plugin</artifactId>
66+
<version>3.6.0</version>
67+
<executions>
68+
<execution>
69+
<phase>package</phase>
70+
<goals>
71+
<goal>shade</goal>
72+
</goals>
73+
<configuration>
74+
<createDependencyReducedPom>false</createDependencyReducedPom>
75+
<shadedArtifactAttached>false</shadedArtifactAttached>
76+
<shadedArtifactId>${project.artifactId}</shadedArtifactId>
77+
<finalName>${project.artifactId}-${project.version}</finalName>
78+
<filters>
79+
<filter>
80+
<artifact>*:*</artifact>
81+
</filter>
82+
</filters>
83+
</configuration>
84+
</execution>
85+
</executions>
86+
</plugin>
6287
</plugins>
6388
</build>
6489
</project>

0 commit comments

Comments
 (0)