gpt4 book ai didi

grails - GGTS 3.6.4 无法运行项目

转载 作者:行者123 更新时间:2023-12-02 15:44:26 25 4
gpt4 key购买 nike

我正在为 Mac 使用 GGTS 3.6.4。
当我在 GGTS 中导入我的项目时,该项目在我的其他 MacBook GGTS 上运行没有问题时显示此错误消息:

Loading Grails 2.4.4 |Configuring classpath Error | Resolve error obtaining dependencies: Failed to read artifact descriptor for xalan:serializer:jar:2.7.1 (Use --stacktrace to see the full trace) Error | Required Grails build dependencies were not found. This is normally due to internet connectivity issues (such as a misconfigured proxy) or missing repositories in grails-app/conf/BuildConfig.groovy. Please verify your configuration to continue.



当我尝试在 IntelliJ 中导入项目时也是如此。

最佳答案

这不是 IDE 的问题。

您的应用程序具有依赖关系 xalan:serializer:jar:2.7它无法从您的本地存储库或 Internet 中找到。

这种依赖存在于 maven 中心 (https://mvnrepository.com/artifact/xalan/serializer/2.7.1) 中,这是在任何 grails 应用程序中使用的非常标准的存储库,因此请确保您的 BuildConfig.groovy已启用 Maven 中心:

grails.project.dependency.resolution = {

...

repositories {

...
mavenCentral()
...

}

...

您提到该应用程序在另一台计算机上运行,​​这是因为该计算机已在某个时间点本地缓存了该依赖项,而 grails 在那里找到了它。如果您删除本地 maven 缓存( .m2 和/或 .ivy),您也会在另一台计算机上收到相同的错误。

关于grails - GGTS 3.6.4 无法运行项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51121156/

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