Bug 1842266 - Convert `HomeScreenTest` to support the Tabs Tray rewrite
[gecko.git] / mobile / android / fenix / buildSrc / build.gradle
blobfca9a527296b93837eaa732f61ab6f5ba12263de
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     }
21 dependencies {
22     implementation "org.json:json:20210307"