For consistency with the rest of the build system, have gradle build folders be created in TOPOBJDR. Put the logic in shared-settings.gradle and apply it to all projects. Existing gradle and taskcluster configuration uses the 'gradle/build' prefix, so continue using that for now. Only apply this when building top-level for now since a fair bit of automation of fenix/focus/a-c projects expects build artifacts in the source directory. Plugins are compiled as "composite builds" so they somewhat exist in their own world. For simplicity, just manually specify the `buildDir` for each plugin. Differential Revision: https://phabricator.services.mozilla.com/D240116
28 lines
869 B
Groovy
28 lines
869 B
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/. */
|
|
|
|
plugins {
|
|
id "org.gradle.kotlin.kotlin-dsl" version "5.1.2"
|
|
}
|
|
|
|
buildDir "${gradle.mozconfig.topobjdir}/gradle/build/mobile/android/android-components/plugins/dependencies"
|
|
|
|
repositories {
|
|
gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository ->
|
|
maven {
|
|
url repository
|
|
if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) {
|
|
allowInsecureProtocol = true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins.register("mozac.DependenciesPlugin") {
|
|
id = "mozac.DependenciesPlugin"
|
|
implementationClass = "DependenciesPlugin"
|
|
}
|
|
}
|