Grails 2.0.3 + JUnit 4.8.2

时间:2013-07-18 17:43:02

标签: grails junit

我正在运行Grails 2.0.3。这个版本使用junit 4.10但我至少会使用版本4.8.2。我已经添加了下一个依赖:

compile 'junit:junit-dep:4.8.2' 
runtime 'junit:junit:4.8.2'

但它似乎没有获得新版本。如何删除/排除旧版本的junit? 谢谢!

1 个答案:

答案 0 :(得分:0)

这应该有效:

inherits("global") {
    excludes "junit"
}

dependencies {
    test "junit:junit:4.8.2"
}

基于using junit 4 in grails的答案。 我在Grail 2.1.0上进行了测试,它确实有效。