удалить файл из jar-with-dependencies с помощью плагина сборки maven - PullRequest
0 голосов
/ 18 июня 2020

Я использую maven-assembly-plugin версии 3.1.1, чтобы создать банку со всеми включенными зависимостями. Я хочу исключить свой application.yml, но не могу удалить его из jar.

pom. xml:

             <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>3.1.1</version>
                <configuration>
                    <descriptors>
                        <descriptor>env/assembly/descriptor.xml</descriptor>
                    </descriptors>
                </configuration>
                <executions>
                    <execution>
                        <id>make-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

мой дескриптор. xml:

<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
    <id>test</id>
    <formats>
        <format>jar</format>
    </formats>
    <includeBaseDirectory>false</includeBaseDirectory>
    <dependencySets>
        <dependencySet>
            <outputDirectory>/</outputDirectory>
            <useProjectArtifact>true</useProjectArtifact>
            <unpack>true</unpack>
            <scope>compile</scope>
            <excludes>
                <exclude>
                    application.yml
                </exclude>
            </excludes>
        </dependencySet>
    </dependencySets>
    <fileSets>
        <fileSet>
            <outputDirectory>/</outputDirectory>
            <directory>${project.build.outputDirectory}</directory>
            <excludes>
                <exclude>
                    application.yml
                </exclude>
            </excludes>
        </fileSet>
    </fileSets>
</assembly>

результат:

The following patterns were never triggered in this artifact exclusion filter:
o  'application.yml'

Если вместо application.yml я использую * шаблон, все файлы будут удалены.

Я попытался указать абсолютный путь, но он изменился ничего:

        <excludes>
            <exclude>
                env/dev/conf/application.yml
            </exclude>
        </excludes>

Также исключить в моем fileSets шов бесполезно.

Также пробовал этот шаблон в fileSets и dependencySet, но application.yml все еще включает:

         <exclude>
            **/application.yml
        </exclude>

1 Ответ

0 голосов
/ 18 июня 2020

решение, которое сработало, я забыл добавить unpackOptions в файл сборки:

pom. xml:

    <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-assembly-plugin</artifactId>
        <version>3.1.1</version>
        <executions>
            <execution>
                <id>make-jar</id>
                <phase>package</phase>
                <goals>
                    <goal>single</goal>
                </goals>
                <configuration>
                <descriptors>
                    <descriptor>env/assembly/descriptor.xml</descriptor>
                </descriptors>
                </configuration>
            </execution>
        </executions>
    </plugin>

дескриптор. xml:

<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd">
    <id>jar-with-dependencies</id>
    <formats>
        <format>jar</format>
    </formats>
    <includeBaseDirectory>false</includeBaseDirectory>
    <fileSets>
        <fileSet>
            <outputDirectory>/</outputDirectory>
            <directory>${project.basedir}</directory>
        </fileSet>
    </fileSets>
    <dependencySets>
        <dependencySet>
            <outputDirectory>/</outputDirectory>
            <useProjectArtifact>true</useProjectArtifact>
            <unpack>true</unpack>
            <scope>runtime</scope>
            <unpackOptions>
                <excludes>
                    <exclude>**/application.yml</exclude>
                </excludes>
            </unpackOptions>
        </dependencySet>
    </dependencySets>
</assembly>
...