我在Intelij中有一个groovy项目,当我尝试使用gradle构建我的项目时,我收到有关冲突的groovy版本的消息。
"冲突模块版本,模块[groovy-all在版本2.4.3中加载,您尝试加载版本2.4.5"
我进入项目设置然后从我的项目库中删除groovy 2.5,这一直有效,直到我再次运行我的构建脚本,它为我的正常groovy加载2.3,为我的groovy测试加载2.5。
下面是我的gradle脚本,是否可以为测试和正常目的加载一个版本的groovy。
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")
}
答案 0 :(得分:4)
您需要从Spock依赖项中排除groovy
testCompile("org.spockframework:spock-core:1.0-groovy-2.4") {
exclude group:'org.codehaus.groovy'
}
您总是可以使用
找到错误依赖的内容gradle dependencies
查看输出