mirror of
https://github.com/google/nomulus.git
synced 2025-07-22 10:46:10 +02:00
Move configs and dependencies from root script to subprojects. There is not too much commonality between subprojects. Besides, the gradle lint plugin (not added to this project yet) does not handle inherited dependencies properly. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218698818
14 lines
175 B
Groovy
14 lines
175 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDirs = [
|
|
"${rootDir}/../third_party/junit/"
|
|
]
|
|
include '**/*.java'
|
|
}
|
|
}
|
|
}
|