Bug 1845354 - Refactor ApkSizeTask into a plugin using composite build
[gecko.git] / mobile / android / fenix / buildSrc / build.gradle
blob93580dab0f9ecebd61742258003b84b40bb495c1
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 plugins {
6     id "org.gradle.kotlin.kotlin-dsl" version "2.4.1"
9 repositories {
10     if (project.hasProperty("centralRepo")) {
11         maven {
12             name "MavenCentral"
13             url project.property("centralRepo")
14             allowInsecureProtocol true // Local Nexus in CI uses HTTP
15         }
16     } else {
17         mavenCentral()
18     }