Maven 无法解析 IntelliJ 中父模块的依赖关系
Maven can't resolve dependencies from Parent Module in IntelliJ
我一直在尝试 clean install
几个模块,所有这些模块在 Nexus 中都有相同的父模块,但是这导致了来自 IntelliJ 的所有模块的相同错误:
Could not resolve dependencies for project com.child-module:child-artifact-id:1.0.0: Failure to find parent-group-id:parent-artifact-id:jar:1.0.0-SNAPSHOT in http://nexus.workplace.com/content/repositories/workplace-internal-snapshot/ was cached in the local repository, resolution will not be reattempted until the update interval of snapshots has elapsed or updated are forced.
尝试了各种 Whosebug 答案的多种解决方案,包括删除丢失工件的“_maven.repository”。我还尝试了强制 mvn clean install -U
和 mvn dependency:purge-local-repository clean install
命令。我删除了 Users/me/.m2/repository 中的所有内容并重新导入了 jars。 Settings.xml 与我的团队成员在准确的位置和准确的副本。
导入的父 pom 与其他人的相同,所以我的本地计算机出于某种原因不是 updating/finding 依赖项,即使在实施上述解决方案后也是如此。在我当地还有什么地方可以检查是否会导致此问题?
作为参考,这是在 IntelliJ w Maven3 上。
显然,这与 Lombok 的手动安装有关,它在某种程度上也与看似无关的包发生冲突。
我一直在尝试 clean install
几个模块,所有这些模块在 Nexus 中都有相同的父模块,但是这导致了来自 IntelliJ 的所有模块的相同错误:
Could not resolve dependencies for project com.child-module:child-artifact-id:1.0.0: Failure to find parent-group-id:parent-artifact-id:jar:1.0.0-SNAPSHOT in http://nexus.workplace.com/content/repositories/workplace-internal-snapshot/ was cached in the local repository, resolution will not be reattempted until the update interval of snapshots has elapsed or updated are forced.
尝试了各种 Whosebug 答案的多种解决方案,包括删除丢失工件的“_maven.repository”。我还尝试了强制 mvn clean install -U
和 mvn dependency:purge-local-repository clean install
命令。我删除了 Users/me/.m2/repository 中的所有内容并重新导入了 jars。 Settings.xml 与我的团队成员在准确的位置和准确的副本。
导入的父 pom 与其他人的相同,所以我的本地计算机出于某种原因不是 updating/finding 依赖项,即使在实施上述解决方案后也是如此。在我当地还有什么地方可以检查是否会导致此问题?
作为参考,这是在 IntelliJ w Maven3 上。
显然,这与 Lombok 的手动安装有关,它在某种程度上也与看似无关的包发生冲突。