Ich habe ein groovy Projekt in Intelij, wenn ich versuche, mein Projekt mit Gradle zu erstellen, bekomme ich diese Nachricht über widersprüchliche groovy Versionen.Groovy Konflikt in Intellij
„Widersprüchliche Modulversionen, Modul [groovy-alle in der Version 2.4.3 geladen und Sie versuchen, Version zu laden 2.4.5“
Ich gehe in Projekteinstellungen dann groovy 2.5 von meinen Projektbibliotheken entfernen , das funktioniert, bis ich mein Build-Skript erneut starte und es lädt 2,3 für meinen normalen Groovy und 2,5 für meine Groovy-Tests.
Unten ist mein Gradle-Skript, gibt es eine Möglichkeit, nur eine Version von groovy sowohl für den Test als auch für normale Zwecke zu laden.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath "io.ratpack:ratpack-gradle:1.3.3"
classpath "com.github.jengelman.gradle.plugins:shadow:1.2.3"
}
}
apply plugin: "io.ratpack.ratpack-groovy"
apply plugin: "com.github.johnrengelman.shadow"
apply plugin: "idea"
apply plugin: "eclipse"
repositories {
jcenter()
}
dependencies {
// Default SLF4J binding. Note that this is a blocking implementation.
// See here for a non blocking appender http://logging.apache.org/log4j/2.x/manual/async.html
runtime 'org.slf4j:slf4j-simple:1.7.12'
testCompile "org.spockframework:spock-core:1.0-groovy-2.4"
testCompile "org.gebish:geb-spock:0.13.1"
testCompile "org.seleniumhq.selenium:selenium-firefox-driver:2.44.0"
testCompile "org.seleniumhq.selenium:selenium-support:2.52.0"
testCompile 'io.ratpack:ratpack-remote-test:1.2.0'
// http://mvnrepository.com/artifact/com.google.inject/guice
compile group: 'com.google.inject', name: 'guice', version: '3.0'
compile 'io.ratpack:ratpack-handlebars:1.2.0'
compile 'com.fasterxml.jackson:jackson-parent:2.7-1'
compile 'postgresql:postgresql:9.1-901-1.jdbc4'
compile ratpack.dependency("hikari")
}
Warum ist dies markiert Grails? –
Geschaltet auf Ratpack. Ich nehme an, du meintest ratpack –