google-nomulus/gradle/third_party.gradle
weiminyu fed4ec496f Add Gradle scripts to Nomulus
Experimental Gradle scripts that build and run all Java tests.

Please see README.md for status and limitations.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=217203690
2018-10-17 11:53:01 -04:00

10 lines
142 B
Groovy

sourceSets {
main {
java {
srcDirs = [
"${rootDir}/../third_party/junit/"
]
include '**/*.java'
}
}
}