gpt4 book ai didi

java - 如何配置maven :assembly root path in the jar

转载 作者:IT老高 更新时间:2023-10-28 20:31:51 30 4
gpt4 key购买 nike

这里是 pom.xml

<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">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.webflow</groupId>
<artifactId>spring-js-resources-thin</artifactId>
<version>2.2.1.RELEASE</version>
<name>Spring js lib</name>
<description>Spring javascript library without dojo</description>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2.1</version>
<configuration>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</plugin>
</plugins>
</build>
</project>

这里是 assembly.xml

<assembly>
<id>js-jar</id>
<formats>
<format>jar</format>
</formats>
<fileSets>
<fileSet>
<directory>src/main/resources/</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>META-INF/**/*</include>
</includes>
</fileSet>
</fileSets>
</assembly>

问题是,每次我打开生成的jar文件(spring-js-resources-thin-2.2.1.RELEASE-js-jar.jar),根文件夹总是命名为artifactid-version (spring-js-resources-thin-2.2.1.RELEASE),然后是 META-INF。

我想知道无论如何我可以使用文件名 artifactid-version.jar 构建 jar 文件。 , 但没有 artifactid-version在类路径中,就像 Maven 存储库中的每个 jar 一样。我认为应该有一个选项或方法来命名 <outputDirectory> .

最佳答案

您必须告诉 maven-assembly-plugin 不要在存档中包含基本目录,这可以通过以下方式实现:

<assembly>
<id>js-jar</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>src/main/resources/</directory>
<outputDirectory>.</outputDirectory>
<includes>
<include>META-INF/**/*</include>
</includes>
</fileSet>
</fileSets>
</assembly>

关于使用 maven-jar-plugin 的建议非常好,因为看起来你在滥用 maven-assembly-plugin。

在最新版本的 maven-assembly-plugin 中,您应该将 . 作为根文件夹。如果你使用 / 你会得到一个警告。

关于java - 如何配置maven :assembly root path in the jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11748849/

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