gpt4 book ai didi

java - 读取程序集时出错 : Descriptor with ID not found

转载 作者:行者123 更新时间:2023-12-01 16:15:25 28 4
gpt4 key购买 nike

我一直在尝试将我的项目从 Java 8 迁移到 Java 11。到目前为止,我还更新了我的 Spring boot 项目,并且能够找到出现问题的解决方案。尽管对于这个问题,我在解决它时遇到了一些困难。 我的 Maven 版本是 3.6.1

最初,我的maven assembly插件的值是这样的:

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptor>src/main/assembly/boot.xml</descriptor>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>

虽然它会抛出一个错误,内容如下:

Execution make-assembly of goal org.apache.maven.plugins:maven-assembly-plugin:3.1.1:single failed: parameter 'descriptor' has been removed from the plugin, please verify documentation. -> [Help 1]

根据maven assembly documentation描述符的使用总是不正确的。所以我将其更新为:

<configuration>
<appendAssemblyId>false</appendAssemblyId>
<descriptorRefs>
<descriptorRef>src/main/assembly/boot.xml</descriptorRef>
</descriptorRefs>
</configuration>

虽然还是不行。它会抛出这样的错误:

Error reading assemblies: Descriptor with ID 'src/main/assembly/boot.xml' not found -> [Help 1]

即使 boot.xml 已经存在。

enter image description here

关于如何解决这个问题还有其他建议吗?预先感谢您!

最佳答案

嗯,我刚刚返回到之前的配置并添加了描述符标签。现在看起来像这样:

<descriptors>
<descriptor>src/main/assembly/boot.xml</descriptor>
</descriptors>

它成功了!

关于java - 读取程序集时出错 : Descriptor with ID <xml path> not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62405785/

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