зеркало из https://github.com/mozilla/glean.git
46 строки
1.5 KiB
Groovy
46 строки
1.5 KiB
Groovy
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
import org.yaml.snakeyaml.Yaml
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'org.yaml:snakeyaml:1.23'
|
|
}
|
|
}
|
|
|
|
def setupProject(name, path, description) {
|
|
settings.include(":$name")
|
|
|
|
project(":$name").projectDir = new File(rootDir, path)
|
|
|
|
// project(...) gives us a skeleton project that we can't set ext.* on
|
|
gradle.beforeProject { project ->
|
|
// However, the "afterProject" listener iterates over every project and gives us the actual project
|
|
// So, once we filter for the project we care about, we can set whatever we want
|
|
if (project.name == name) {
|
|
project.ext.description = description
|
|
}
|
|
}
|
|
}
|
|
|
|
def yaml = new Yaml()
|
|
def buildconfig = yaml.load(new File(rootDir, '.buildconfig.yml').newInputStream())
|
|
buildconfig.projects.each { project ->
|
|
setupProject(project.key, project.value.path, project.value.description)
|
|
}
|
|
|
|
gradle.projectsLoaded { ->
|
|
// Wait until root project is "loaded" before we set "config"
|
|
// Note that since this is set on "rootProject.ext", it will be "in scope" during the evaluation of all projects'
|
|
// gradle files. This means that they can just access "config.<value>", and it'll function properly
|
|
gradle.rootProject.ext.library = [
|
|
version: buildconfig.libraryVersion,
|
|
]
|
|
}
|