mirror of
https://github.com/google/nomulus
synced 2026-07-25 01:22:52 +00:00
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=244042884
24 lines
418 B
Groovy
24 lines
418 B
Groovy
if (pluginsUrl) {
|
|
println "Plugins: Using repo $pluginsUrl..."
|
|
pluginManagement {
|
|
repositories {
|
|
maven {
|
|
url pluginsUrl
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
println "Plugins: Using default repo..."
|
|
}
|
|
|
|
rootProject.name = 'nomulus'
|
|
|
|
include 'core'
|
|
include 'proxy'
|
|
include 'third_party'
|
|
include 'util'
|
|
include 'services:default'
|
|
include 'services:backend'
|
|
include 'services:tools'
|
|
include 'services:pubapi'
|