16 lines
275 B
Groovy
16 lines
275 B
Groovy
|
|
||
|
apply from: 'dependencies.gradle'
|
||
|
|
||
|
allprojects {
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
plugins.withType(JavaPlugin) {
|
||
|
dependencies {
|
||
|
implementation global_libs.annotations
|
||
|
testImplementation global_libs.junit
|
||
|
}
|
||
|
}
|
||
|
}
|