gpt4 book ai didi

Maven 无法在本地 repo 中找到依赖项

转载 作者:行者123 更新时间:2023-12-01 11:07:30 25 4
gpt4 key购买 nike

我已经在一个pom类型的项目中声明了所有的spring依赖并安装了它。

我的项目使用公共(public)依赖pom的pom如下。但似乎 maven 没有使用/无法找到依赖项 pom

<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.bookme</groupId>
<artifactId>portal</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>

<name>portal</name>

<properties>
<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.bookme.common</groupId>
<artifactId>common-dependencies</artifactId>
<version>1.0</version>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${endorsed.dir}</outputDirectory>
<silent>true</silent>
<artifactItems>
<artifactItem>
<groupId>javax</groupId>
<artifactId>javaee-endorsed-api</artifactId>
<version>6.0</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>

谁能告诉我我做错了什么吗?谢谢

最佳答案

  1. 您是否已将依赖项 pom 安装到本地 m2 存储库?

  2. 添加 scope 作为 import 到你的依赖 pom.看here了解更多详情

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.bookme.common</groupId>
<artifactId>common-dependencies</artifactId>
<version>1.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

还要考虑以下事实

  • 不要尝试导入在子模块中定义的 pom当前 pom。尝试这样做将导致构建失败因为它将无法找到 pom。

  • 切勿将导入 pom 的 pom 声明为父级(或祖父级,等)的目标pom。没有办法解决循环问题并且会抛出异常。

  • 当引用其 poms 具有传递依赖性的 Artifact 时该项目将需要将这些 Artifact 的版本指定为托管依赖项。不这样做会导致构建失败因为 Artifact 可能没有指定版本。 (这应该是在任何情况下都被认为是最佳实践,因为它保留了从一个构建更改为下一个构建的 Artifact )。

关于Maven 无法在本地 repo 中找到依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15133024/

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