gpt4 book ai didi

maven - 我希望从我的 jar 中排除一些类文件。我正在使用 maven-assembly-plugin。它仍然添加文件。我没有收到任何错误

转载 作者:行者123 更新时间:2023-12-04 11:18:11 27 4
gpt4 key购买 nike

我没有收到此代码的任何错误。只是我想排除的文件仍然被添加。我正在使用 Eclipse 的 Maven 插件

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>only</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<archive>
<manifest>
<mainClass>com.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<excludes>
<exclude>**/com/uiservices/controllers/*.* </exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>

最佳答案

maven-assembly-plugin不是那样工作的。

您想要做的是覆盖程序集描述符的配置 jar-with-dependencies这是不可能的。

如果您想要做的是创建一个类似于程序集创建的 jar jar-with-dependencies但是如果没有您自己项目的某些特定类,您必须编写自己的程序集并在 maven-assembly-plugin 中调用它。就像接下来的一样。

组装在 src/assembly/jar-with-deps-with-exclude.xml :

<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
<!-- TODO: a jarjar format would be better -->
<id>jar-with-dependencies-and-exclude-classes</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<dependencySets>
<dependencySet>
<outputDirectory>/</outputDirectory>
<useProjectArtifact>false</useProjectArtifact>
<unpack>true</unpack>
<scope>runtime</scope>
</dependencySet>
</dependencySets>
<fileSets>
<fileSet>
<outputDirectory>/</outputDirectory>
<directory>${project.build.outputDirectory}</directory>
<excludes>
<exclude>com/uiservices/controllers/*.*</exclude>
</excludes>
</fileSet>
</fileSets>
</assembly>

这将创建一个没有解压依赖项的程序集,并且除了排除的类之外添加了您的类。

然后在你的 pom.xml 中:

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>only</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/assembly/jar-with-deps-with-exclude.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>

但是,如果您需要的是没有排除类的经典 jar,则可以在 maven-jar-plugin 中排除它们。直接地 :

<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<exclude>com/uiservices/controllers/*.*</exclude>
</excludes>
</configuration>
</plugin>

关于maven - 我希望从我的 jar 中排除一些类文件。我正在使用 maven-assembly-plugin。它仍然添加文件。我没有收到任何错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30023509/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com