mirror of
https://github.com/google/nomulus.git
synced 2025-08-05 01:11:50 +02:00
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
23 lines
430 B
Groovy
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'
|