Nach dem man das richtige Plugin der POM hinzugefügt hat muss man es natürlich konfigurieren:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>1.3.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>de.fbn.bio.benchmark.Benchmark</mainClass> </transformer> </transformers> </configuration> </execution> </executions> </plugin>
Keine Kommentare:
Kommentar veröffentlichen