gpt4 book ai didi

java - Maven 全新安装无法在项目上执行目标

转载 作者:行者123 更新时间:2023-12-02 11:55:24 24 4
gpt4 key购买 nike

我正在开发一个 Spring Boot 项目,它的模块很少。我有一个具有主类的入口点模块,我在入口点模块 pom.xml 中添加了另一个依赖模块。当我给出命令 mvn clean install 时,它会抛出一个错误,提示“

Failed to execute goal on project api: Could not resolve dependencies for project com.nikesh:api:jar:1.0.0: The following artifacts could not be resolved: com.nikesh:lib:jar:1.0.0, com.nikesh:repo:jar:1.0.0, com.nikesh:entity:jar:1.0.0, com.nikesh:dto:jar:1.0.0, com.nikesh:service:jar:1.0.0, com.nikesh:common:jar:1.0.0: Failure to find com.nikesh:lib:jar:1.0.0 in https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -`

这是我的 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>com.nikesh</groupId>
<artifactId>api</artifactId>
<version>1.0.0</version>
<description>api module</description>
<packaging>jar</packaging>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
</parent>

<properties>
<java.version>1.8</java.version>
<start-class>com.nikesh.api.MultiModuleApp</start-class>
</properties>

<dependencies>
<dependency>
<groupId>com.nikesh</groupId>
<artifactId>lib</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.nikesh</groupId>
<artifactId>repo</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.nikesh</groupId>
<artifactId>entity</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.nikesh</groupId>
<artifactId>dto</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.nikesh</groupId>
<artifactId>service</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.nikesh</groupId>
<artifactId>common</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

请帮我解决这个问题。

最佳答案

您需要确保在主模块构建之前以正确的顺序构建所有子模块

使用多个模块的指南

react 堆

Maven 中处理多模块项目的机制称为 react 器。 Maven 核心的这一部分执行以下操作:

  1. 收集所有可用的模块来构建
  2. 将项目按照正确的构建顺序进行排序
  3. 按顺序构建选定的项目

由于多模块构建中的模块可以相互依赖,因此 react 器以确保任何项目在需要之前构建的方式对所有项目进行排序非常重要。

对项目进行排序时遵循以下关系:

  • 项目对构建中另一个模块的依赖
  • 插件声明,其中插件是构建中的另一个模块
  • 构建中另一个模块的插件依赖
  • 构建中另一个模块的构建扩展声明
  • 元素中声明的顺序(如果没有其他规则适用)

请注意,仅使用“实例化”引用 - dependencyManagementpluginManagement 元素不会导致 react 器排序顺序发生更改

了解更多 info 。你可以引用这个link对于示例多模块 Maven 项目。

关于java - Maven 全新安装无法在项目上执行目标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47639711/

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