gpt4 book ai didi

spring - Spring boot loader 的组和 Artifact ID 是什么?

转载 作者:行者123 更新时间:2023-12-04 02:39:14 25 4
gpt4 key购买 nike

我想解压并复制我的 war 文件中的 spring boot loader 组件。我正在使用 maven 依赖插件。我不确定其正确的组和 Artifact ID。 Maven 提示它。这是我正在使用的 maven 配置:

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>unpack</id>
<phase>prepare-package</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-loader</artifactId>
<version>0.5.0.BUILD-SNAPSHOT</version>
<type>jar</type>
</artifactItem>
</artifactItems>
<outputDirectory>${project.build.directory}/${project.artifactId}-${project.version}</outputDirectory>
<remoteRepositories>central::default::http://repo.springsource.org/snapshot/</remoteRepositories>
</configuration>
</execution>
</executions>
</plugin>

谢谢。

更新

我解决了这个问题。它正在调查本地 nexus maven 存储库。

最佳答案

在您的 pom.xml 中添加此存储库

<repository>
<id>spring-milestones</id>
<url>http://repo.springsource.org/libs-milestone/</url>
</repository>

依赖会像
 <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-loader</artifactId>
<version>0.5.0.M6</version> <!-- 6 is the latest till yet -->
</dependency>

关于spring - Spring boot loader 的组和 Artifact ID 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20242057/

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