[go: nahoru, domu]

blob: d6127bc06b8c6415b16d9a744cf9b43568bae66a [file] [log] [blame]
Aurimas Liutikas9ab3b4c32017-04-19 09:33:27 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Aurimas Liutikas9ab3b4c32017-04-19 09:33:27 -070017def supportRoot = ext.supportRootFolder
18if (supportRoot == null) {
19 throw new RuntimeException("variable supportRootFolder is not set. you must set it before" +
20 " including this script")
21}
22
Aurimas Liutikasa2cbbfa2018-01-25 14:42:41 -080023apply from: "${supportRoot}/buildSrc/unbundled_check.gradle"
24
25def checkoutRoot = "${ext.supportRootFolder}/../.."
Aurimas Liutikas9ab3b4c32017-04-19 09:33:27 -070026ext.repos = new Properties()
27ext.repos.prebuiltsRoot = "${checkoutRoot}/prebuilts"
Aurimas Liutikas9ab3b4c32017-04-19 09:33:27 -070028
Aurimas Liutikas1e993772018-07-16 15:19:12 -070029ext.repoNames = ["${repos.prebuiltsRoot}/androidx/internal",
30 "${repos.prebuiltsRoot}/androidx/external",]
Aurimas Liutikas9ab3b4c32017-04-19 09:33:27 -070031
32/**
33 * Adds maven repositories to the given repository handler.
34 */
35def addMavenRepositories(RepositoryHandler handler) {
36 repoNames.each { repo ->
37 handler.maven {
38 url repo
39 }
40 }
Aurimas Liutikasa2cbbfa2018-01-25 14:42:41 -080041 if (System.getenv("ALLOW_PUBLIC_REPOS") != null || (isUnbundledBuild(ext.supportRootFolder))) {
Aurimas Liutikas9ab3b4c32017-04-19 09:33:27 -070042 handler.mavenCentral()
43 handler.jcenter()
Aurimas Liutikasaa9688e2017-07-06 10:41:00 -070044 handler.google()
Aurimas Liutikasa2cbbfa2018-01-25 14:42:41 -080045 handler.maven {
46 url "https://plugins.gradle.org/m2/"
47 }
Aurimas Liutikas9ab3b4c32017-04-19 09:33:27 -070048 }
49 def androidPluginRepoOverride = System.getenv("GRADLE_PLUGIN_REPO")
50 if (androidPluginRepoOverride != null) {
51 handler.maven {
52 url androidPluginRepoOverride
53 }
54 }
55}
56
Aurimas Liutikasa2cbbfa2018-01-25 14:42:41 -080057ext.repos.addMavenRepositories = this.&addMavenRepositories