mirror of
https://github.com/google/nomulus.git
synced 2025-06-10 14:34:43 +02:00
23 lines
418 B
Groovy
23 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'
|