Można dodać następujące do POM
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.group.id.Launcher1</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
Elasticsearch odcienie wiele artefaktów w ich [Maven build] (https://github.com/elasticsearch/elasticsearch/blob/master/pom.xml). Spójrz na to (szukaj "cienia" na przykład użycia). – pickypg
Potrzebuję tej samej odpowiedzi !! – acidghost
zespół sbt dodano obsługę cieniowania w wersji 0.14 – lockwobr