google-nomulus/gradle/settings.gradle
mmuller f7dbaf1f81 Convert update_dependency procedure to use gradle proxy
Collect the set of dependencies using the gradle proxy and push to GCS using
gcs_sync.

TESTED: Verified that the script works against both unupdated and up-to-date
dependency sets, verified that the proxy server is destroyed after completion.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=241529357
2019-04-05 11:36:41 -04:00

23 lines
430 B
Groovy

if (pluginsUrl) {
println "Using repository $pluginsUrl for plugins"
pluginManagement {
repositories {
maven {
url pluginsUrl
}
}
}
} else {
println "Using default repository for plugins"
}
rootProject.name = 'nomulus'
include 'core'
include 'proxy'
include 'third_party'
include 'util'
include 'services:default'
include 'services:backend'
include 'services:tools'
include 'services:pubapi'