我试图运行 maven-install 将我的插件放在本地 maven 缓存中,但它给了我未解决的依赖项错误:#release;3.0.0: java.text.ParseException: 在' http://中找到不一致的模块描述符文件plugins.grails.org/grails-release/tags/RELEASE_3_0_0/release-3.0.0.pom ':坏组织:预期='' 找到='org.grails.plugins'; 我的环境有问题吗?我想最终将我的插件发布到公司远程存储库。我在 BuildConfig.groovy 中有这个:
grails.project.dependency.resolution = {
inherits("global") {
}
repositories {
grailsCentral()
mavenLocal()
}
dependencies
build ":release:3.0.0"
}
}