Я использую 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>