Grails-DataTables插件不';你不存在了吗?

Grails-DataTables插件不';你不存在了吗?,grails,plugins,datatables,Grails,Plugins,Datatables,我试着添加——编译“org.grails.plugins:grailsdatatables:0.14”——并且 --编译“org.grails.plugins:grailsdatatables:0.15”,但没有找到它们 我想在GRAILS-4.0.3中使用它,但似乎不可能,它是否被GRAILS抛弃了 好的,我使用新的URL:s进行了测试。我不确定我做得是否正确,但失败了 Error initializing classpath: Could not find org.grails.plugin

我试着添加——编译“org.grails.plugins:grailsdatatables:0.14”——并且 --编译“org.grails.plugins:grailsdatatables:0.15”,但没有找到它们

我想在GRAILS-4.0.3中使用它,但似乎不可能,它是否被GRAILS抛弃了

好的,我使用新的URL:s进行了测试。我不确定我做得是否正确,但失败了

Error initializing classpath: Could not find org.grails.plugins:grails-datatables:0.15.Searched in the following locations:
file:/C:/Users/Lars/.m2/repository/org/grails/plugins/grails-datatables/0.15/grails-datatables-0.15.pom

file:/C:/Users/Lars/.m2/repository/org/grails/plugins/grails-datatables/0.15/grails-datatables-0.15.jar
https://repo.grails.org/grails/core/org/grails/plugins/grails-datatables/0.15/grails-datatables-0.15.pom
https://repo.grails.org/grails/core/org/grails/plugins/grails-datatables/0.15/grails-datatables-0.15.jar
https://repo.grails.org/grails/plugin-releases-local/org/grails/plugins/grails-datatables/0.15/grails-datatables-0.15.pom
https://repo.grails.org/grails/plugin-releases-local/org/grails/plugins/grails-datatables/0.15/grails-datatables-0.15.jar
看起来我做得不错,但在给定的URL上找不到

build.gradle一开始是这样的:

buildscript {
    repositories {
        mavenLocal()
        maven { url "https://repo.grails.org/grails/core" }
    }
    dependencies {
        classpath "org.grails:grails-gradle-plugin:$grailsVersion"
        classpath "org.grails.plugins:hibernate5:${gormVersion-".RELEASE"}"
        classpath "com.bertramlabs.plugins:asset-pipeline-gradle:2.14.2"
    }
}

version "0.1"
group "test"

apply plugin:"eclipse"
apply plugin:"idea"
apply plugin:"war"
apply plugin:"org.grails.grails-web"
apply plugin:"asset-pipeline"
apply plugin:"org.grails.grails-gsp"

repositories {
    mavenLocal()
    maven { url "https://repo.grails.org/grails/core" }
    maven { url "https://repo.grails.org/grails/plugin-releases-local" }
}

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-web-boot"
    compile "org.grails:grails-logging"
    compile "org.grails:grails-plugin-rest"
    compile "org.grails:grails-plugin-databinding"
    compile "org.grails:grails-plugin-i18n"
    compile "org.grails:grails-plugin-services"
    compile "org.grails:grails-plugin-url-mappings"
    compile "org.grails:grails-plugin-interceptors"
    compile "org.grails.plugins:cache"
    compile "org.grails.plugins:async"
    compile "org.grails.plugins:scaffolding"
    compile "org.grails.plugins:events"
    compile "org.grails.plugins:hibernate5"
    compile "org.hibernate:hibernate-core:5.1.5.Final"
    compile "org.grails.plugins:gsp"
    compile 'org.grails.plugins:quartz:2.0.12'
    console "org.grails:grails-console"
    compile "org.grails.plugins:grails-datatables:0.15"
Gradle.properties如下所示:

grailsVersion=3.3.0
gormVersion=6.1.6.RELEASE
gradleWrapperVersion=3.5
但在这个环节:

我发现了一个有效的存储库:

Note: this artifact is located at Grails Plugins repository (https://repo.grails.org/grails/plugins/) 
我试图添加--compile“org.grails.plugins:grailsdatatables:0.14”-- 还有——编译“org.grails.plugins:grailsdatatables:0.15”,但是 他们都没找到

您尚未指明试图从哪些存储库解析这些存储库,但这些存储库是可用的:

我想在GRAILS-4.0.3中使用它,但它似乎不可能,是吗 被遗弃在圣杯里


据我所知,没有一个版本的插件与Grails4.0.3兼容。该插件当然是开源的()。

我已经测试过了,但仍然失败。如果您使用Grails 4进行测试,我预计它会失败。正如我在回答中所说,据我所知,没有一个插件版本与Grails 4.0.3兼容。我链接的repo中的最新版本是使用Grails 2.5.3()构建的。我上面链接的repo显示了Grails 2插件描述符和包含插件的
.zip
文件。只有Grails1和2插件以这种方式分发。具体来说,grails3和Grails4插件并不是这样分发的。“那么最后一句话是,grails3没有该插件的工作版本?”-我不知道。如果有人已经将它移植到Grails3,那么他们还没有将它发布到我们的门户。你可以直接联系作者。我想他们可能知道。