当前位置: 首页 > 知识库问答 >
问题:

初始化类路径时出错:找不到id为' org.grails.plugins.views-json '的插件

萧晔
2023-03-14

我正在使用Grails3.3.11和Java1.8.0_275(开放)。

突然间,我的项目停止了工作。当我干净地运行grails或run-app时,它会说:

 * Where:
Build file '/media/alfredo/1TBHDD/CMB/Code projects/Grails 3/plataforma-mserp/build.gradle' line: 22

* What went wrong:
A problem occurred evaluating root project 'cmberp'.
> Plugin with id 'org.grails.plugins.views-json' not found.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

CONFIGURE FAILED

Total time: 1.121 secs
| Error Error initializing classpath: Plugin with id 'org.grails.plugins.views-json' not found. (Use --stacktrace to see the full trace)

这是我的构建.gradle 文件。它指示第 22 行和第 72 行中的错误。我不知道为什么会发生这种情况,因为它按预期工作。也许是一些配置。我添加到此项目中的唯一内容是 jgit 流配置。

buildscript {
    repositories {
        mavenLocal()
        maven { url "http://repo.grails.org/grails/core" }
    }
    dependencies {
        classpath files('gradle/gradle-trust-all.jar')
        classpath "org.grails:grails-gradle-plugin:$grailsVersion"
        classpath "org.grails.plugins:hibernate5:${gormVersion-".RELEASE"}"
        classpath "org.grails.plugins:views-gradle:1.2.9"
        classpath 'io.github.robwin:jgitflow-gradle-plugin:0.6.0'
    }
}

version "$version"
group "br.gov.cmb"

apply plugin:"eclipse"
apply plugin:"idea"
apply plugin:"war"
apply plugin:"org.grails.grails-web"
apply plugin:"org.grails.plugins.views-json"
apply plugin: 'io.github.robwin.jgitflow'

repositories {
    mavenLocal()
    maven { url "http://repo.grails.org/grails/core" }
}

dependencies {
    compile "org.springframework.boot:spring-boot-starter-logging"
    compile "org.springframework.boot:spring-boot-autoconfigure"
    compile "org.grails:grails-core"
    compile "org.springframework.boot:spring-boot-starter-actuator"
    compile "org.springframework.boot:spring-boot-starter-tomcat"
    compile "org.grails:grails-plugin-url-mappings"
    compile "org.grails:grails-plugin-rest"
    compile "org.grails:grails-plugin-codecs"
    compile "org.grails:grails-plugin-interceptors"
    compile "org.grails:grails-plugin-services"
    compile "org.grails:grails-plugin-datasource"
    compile "org.grails:grails-plugin-databinding"
    compile "org.grails:grails-web-boot"
    compile "org.grails:grails-logging"
    compile "org.grails.plugins:cache"
    compile "org.grails.plugins:async"
    compile "org.grails.plugins:events"
    compile "org.grails.plugins:hibernate5"
    compile "org.hibernate:hibernate-core:5.1.16.Final"
    compile "org.grails.plugins:views-json"
    compile "org.grails.plugins:views-json-templates"
    compile "com.microsoft.sqlserver:mssql-jdbc" //Added by cmb developer
    compile 'org.grails.plugins:quartz:2.0.13' //Added by cmb developer
    console "org.grails:grails-console"
    profile "org.grails.profiles:rest-api"
    runtime "org.glassfish.web:el-impl:2.1.2-b03"
    runtime "com.h2database:h2"
    runtime "org.apache.tomcat:tomcat-jdbc"
    testCompile "org.grails:grails-gorm-testing-support"
    testCompile "org.grails:grails-datastore-rest-client"
    testCompile "org.grails:grails-web-testing-support"
    testCompile "org.grails.plugins:geb:1.1.2"
    testRuntime "org.seleniumhq.selenium:selenium-chrome-driver:2.47.1"
    testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1"
    testRuntime "net.sourceforge.htmlunit:htmlunit:2.18"
}


bootRun {
    jvmArgs('-Dspring.output.ansi.enabled=always')
    addResources = true
    String springProfilesActive = 'spring.profiles.active'
    systemProperty springProfilesActive, System.getProperty(springProfilesActive)
}


tasks.withType(Test) {
    systemProperty "geb.env", System.getProperty('geb.env')
    systemProperty "geb.build.reportsDir", reporting.file("geb/integrationTest")
    systemProperty "webdriver.chrome.driver", System.getProperty('webdriver.chrome.driver')
    systemProperty "webdriver.gecko.driver", System.getProperty('webdriver.gecko.driver')
}

请帮帮我!

谢谢

阿尔弗雷多

共有1个答案

朱皓
2023-03-14

这可能是由于当前正在进行的存储库中断。请参阅 https://github.com/grails/grails-core/issues/11825。

 类似资料:
  • 下面提供了引用spring-cloud-sleuth的构建文件的一部分。 添加此依赖项后,应用程序无法以以下异常启动(基于注释添加) 我使用slf4j而不是log4j来实现日志框架,当我删除sleuth依赖项时,应用程序运行良好。 我注意到,当包含spring-cloud依赖项时,会出现以下“附加”propertysources。

  • 我想找到api密钥,在我的设备上使用和测试我的应用程序(我的意思是在发布之前,我想在将设备连接到笔记本电脑时,我想测试程序并查看设备上的地图)。无论如何,我使用这一行来查找md5和sh1,但当在cmd中编写这一行时,我看到下面的错误!为什么?我如何解决这个问题? 我写道: C: \程序文件\ Java\jdk1.7.0\U 03\bin 但我在cmd中遇到了这个错误: 初始化虚拟机java/lan

  • 我试图用依赖项混淆jar(尽管如果我将常规的单个jar设置为infle,同样的问题也会影响)。 我使用的是Java8,但我必须使用更新版本的Proguard和Proguard Maven插件,因为它涵盖了一些来自更高版本的jar依赖项(否则我会遇到“不支持的主要-次要版本”问题)。 当执行“mvn clean install”时,执行该步骤,但我得到一个“在pluginArtifacts中找不到p

  • 当我试图创建一个新的空项目(或任何其他类型的项目)时,我在IntelliJ IDEA版本2017.3.5中得到错误int the title。到目前为止,我所做的是: > 从以下网址下载社区版本(不含jdk)https://www.jetbrains.com/idea/download/download-thanks.html?platform=linuxwithoutjdk&code=iic 将

  • 问题内容: 昨天我将Android Studio升级到了3.0版,但是我正在使用LibGdx,升级后无法构建我的项目。 当我尝试构建时,它给了我一个错误: 错误:(2,0)找不到ID为’jetty’的插件 我该如何解决? 问题答案: 目前已弃用的 html模块 已在Gradle 4.1版本中删除。 Android Studio 3.0使用和 LibGDX中尚不支持Gradle 4.1,对此存在一个

  • 问题内容: jenkins的新手,正在运行我的第一个版本。我正在使用gradle进行构建,但一直出现以下错误 我搜索了将近2天,并尝试安装其他android插件,但似乎无法解决此问题。 我已经在詹金斯的全局属性下设置了ANDROID_HOME变量。确保路径正确。 任何帮助将不胜感激。提前致谢 问题答案: 我已通过在bundle.gradle文件顶部添加以下代码来修复此问题 谢谢你的帮助 :)