<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<!-- 加载主类 -->
<mainClass>com.fy.Main</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
标签:插件,java,plugin,maven,shade,plugins
From: https://www.cnblogs.com/zolmk/p/17281048.html