blob: 68c85829b52c9955fe3e4c02022fd5ca54945751 [file] [log] [blame]
Oussama Ben Abdelbakif825eb52018-12-04 16:17:00 -05001/*
2 * Copyright 2018 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
Jim Sproch9e38b4f2021-01-06 14:21:06 -080017include ":jetpad-integration"
Jeff Gastond72edf22021-08-24 11:53:54 -040018include ":plugins"
19include ":private"
Aurimas Liutikas42096912021-11-04 10:08:55 -070020include ":public"
Jeff Gaston09154192023-09-18 14:28:45 -040021include ":imports:benchmark-gradle-plugin"
22include ":imports:benchmark-darwin-plugin"
23include ":imports:baseline-profile-gradle-plugin"
24include ":imports:inspection-gradle-plugin"
25include ":imports:compose-icons"
26include ":imports:glance-layout-generator"
27include ":imports:stableaidl-gradle-plugin"
Aurimas Liutikase1b84582021-04-23 14:17:30 -070028
Aurimas Liutikase1b84582021-04-23 14:17:30 -070029dependencyResolutionManagement {
30 versionCatalogs {
31 libs {
Aurimas Liutikase1b84582021-04-23 14:17:30 -070032 def agpOverride = System.getenv("GRADLE_PLUGIN_VERSION")
33 if (agpOverride != null) {
34 logger.warn("Using custom version ${agpOverride} of AGP due to GRADLE_PLUGIN_VERSION being set.")
35 version('androidGradlePlugin', agpOverride)
36 }
Aurimas Liutikas55e56d22023-10-04 12:54:09 -070037 def lintOverride = System.getenv("LINT_VERSION")
38 if (lintOverride != null) {
39 logger.warn("Using custom version ${lintOverride} of Lint due to LINT_VERSION being set.")
40 version('androidLint', lintOverride)
41 }
Aurimas Liutikase1b84582021-04-23 14:17:30 -070042 }
43 }
Alan Viverette5f0e16f2021-08-20 15:38:19 -040044}