mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
13 lines
321 B
Groovy
13 lines
321 B
Groovy
allprojects {
|
|
repositories {
|
|
flatDir name:'flat', dirs:["S_DIR/.gradle/flatRepo"]
|
|
if ('allow' == System.properties['build.network_access']) {
|
|
mavenCentral()
|
|
jcenter()
|
|
} else {
|
|
maven {
|
|
url "S_DIR/dependencies"
|
|
}
|
|
}
|
|
}
|
|
}
|