Codebase list libjdom2-intellij-java / 83b86f71-beb0-4228-9788-95ce7f1371c0/main test / build.gradle
83b86f71-beb0-4228-9788-95ce7f1371c0/main

Tree @83b86f71-beb0-4228-9788-95ce7f1371c0/main (Download .tar.gz)

build.gradle @83b86f71-beb0-4228-9788-95ce7f1371c0/mainraw · history · blame

dependencies {
    compile project(':core')
    testCompile project(':contrib')
    testCompile 'junit:junit:4.12'
    testRuntime 'jaxen:jaxen:1.1.6'
}

sourceSets {
    test {
        java {
            srcDir 'src/java'
        }
        resources {
            srcDir 'src/resources'
        }
        resources {
            srcDir 'src/java'
            include '**/*.xml', '**/*.xsd', '**/*.dtd'
        }
    }
}