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