欢迎您访问 最编程 本站为您分享编程语言代码,编程技术文章!
您现在的位置是: 首页

云原生]一篇文章将 Maven 打包到云中

最编程 2024-07-18 14:44:57
...
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <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>top.chen.fansback.common.spider.****.BackFansSpider</mainClass> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build>