0

抱歉,这里是 Grails 菜鸟。我正在查看一个在其测试代码中引用了 JUnit 的项目。我试图弄清楚 JUnit 是如何添加到类路径中的。我转到 BuildConfig.groovy 文件,我没有看到对 JUnit 的明确引用。

依赖项是:

dependencies {
    // specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.

    test "org.spockframework:spock-grails-support:0.7-groovy-2.0"

    runtime 'postgresql:postgresql:9.0-801.jdbc4'
    compile 'com.thoughtworks.xstream:xstream:1.4.2'
    compile 'spy:spymemcached:2.8.9'
    compile "org.grails:grails-webflow:$grailsVersion"
    compile 'org.infinispan:infinispan-core:5.1.0.CR2'
}

插件依赖项是:

plugins {

    test(":spock:0.7") {
        exclude "spock-grails-support"
    }

    runtime ":jquery:1.7.2"
    runtime ":resources:1.1.6"

    // Uncomment these (or add new ones) to enable additional resources capabilities
    //runtime ":zipped-resources:1.0"
    //runtime ":cached-resources:1.0"
    //runtime ":yui-minify-resources:0.1.4"

    build ":tomcat:$grailsVersion"

    compile ":geoip:0.2"
    compile ':cache:1.0.0'
    compile ":quartz:1.0-RC9"
    //compile ":quartz-monitor:0.3-RC2"
    compile ":grails-melody:1.45"

    compile ':webflow:2.0.0', {
        exclude 'grails-webflow'
      }
}

那么关于Junit jar可能带来什么或我如何找出它是什么的任何想法?

谢谢。

4

1 回答 1

3

默认情况下,JUnit 是 grails 打包的一部分。您应该能够在libgrails 包中找到 junit jar,您可以从 grails.org 下载

GRAILS_HOME\lib\junit\junit\jars

您还可以通过在项目上运行grails dependency-report并在测试范围内查找junitjar 来验证它是如何添加到项目中的。

Grails 2.2.3 附带的最新版本的 junit 是junit-4.10.

于 2013-07-27T23:34:08.027 回答