Я пытался добавить --compile "org.grails.plugins: grails-datatables: 0.14" - а также --compile "org.grails.plugins: grails-datatables: 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
Но по этой ссылке: https://mvnrepository.com/artifact/org.grails.plugins/grails-datatables/0.15
I нашел репозиторий, который работал:
Note: this artifact is located at Grails Plugins repository (https://repo.grails.org/grails/plugins/)
Я пытался добавить --compile "org.grails.plugins: grails-datatables: 0.14" - а также --compile "org.grails.plugins: grails-datatables: 0.15", но ни один из них где найдено.
Вы не указали, из каких репозиториев вы пытались разрешить их, но они доступны:
https://mvnrepository.com/artifact/org.grails.plugins/grails-datatables/0.14
https://mvnrepository.com/artifact/org.grails.plugins/grails-datatables/0.15
https://repo.grails.org/grails/plugins-releases-local/org/grails/plugins/grails-datatables/0.15/
https://repo.grails.org/grails/plugins-releases-local/org/grails/plugins/grails-datatables/0.14/
I хотите использовать его с GRAILS-4.0.3, но это не кажется возможным, он оставлен в grails?
Насколько я знаю, нет версии плагина, совместимой с Grails 4.0.3. Плагин, конечно же, с открытым исходным кодом (https://bitbucket.org/ben-wilson/grails-datatables/src/master/).