xml Tworzenie zbiorczego jar(zzależnościami)przy pomocy maven-shade-plugin

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml Tworzenie zbiorczego jar(zzależnościami)przy pomocy maven-shade-plugin相关的知识,希望对你有一定的参考价值。

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <build>
        <plugins>
            <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>
                            <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>org.example.project.Main</mainClass>
                                </transformer>
                            </transformers>
                            <outputDirectory>${project.build.directory}/original</outputDirectory>
                        </configuration>
                    </execution>
                </executions>
            </plugin>         
        </plugins>
    </build>    
</project>

以上是关于xml Tworzenie zbiorczego jar(zzależnościami)przy pomocy maven-shade-plugin的主要内容,如果未能解决你的问题,请参考以下文章

java Tworzenie我操纵实体

java Tworzenie库存我dodawanie做niego项目

XML——初识XML

XML——初识XML

XML——初识XML

XML教程