https://pastein.ru/t/Rw

  скопируйте уникальную ссылку для отправки


<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<transformers>
 <transformer implementation=
 "org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  <mainClass>org.baeldung.executable.ExecutableMavenJar</mainClass>
   </transformer>
            </transformers>
        </configuration>
        </execution>
    </executions>
</plugin>