Daz DeBoer | e95a4b9 | 2021-11-04 21:58:21 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2021 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 | */ |
Aurimas | 2084d87 | 2021-11-22 10:38:48 -0800 | [diff] [blame] | 16 | |
| 17 | plugins { |
Aurimas | b9e9273 | 2022-04-15 22:46:36 +0000 | [diff] [blame] | 18 | id("java-gradle-plugin") |
Aurimas | 2084d87 | 2021-11-22 10:38:48 -0800 | [diff] [blame] | 19 | alias(libs.plugins.kotlinJvm) |
Daz DeBoer | e95a4b9 | 2021-11-04 21:58:21 +0000 | [diff] [blame] | 20 | } |
| 21 | |
Daz DeBoer | e95a4b9 | 2021-11-04 21:58:21 +0000 | [diff] [blame] | 22 | dependencies { |
Yigit Boyar | c14adc7 | 2023-09-20 10:27:29 -0700 | [diff] [blame] | 23 | implementation(project(":shared")) |
Aurimas Liutikas | 501642d | 2024-08-19 09:28:42 -0700 | [diff] [blame] | 24 | implementation("com.gradle:develocity-gradle-plugin:3.18") |
Aurimas Liutikas | d3f4778 | 2024-04-23 17:27:29 +0000 | [diff] [blame] | 25 | implementation("com.gradle:common-custom-user-data-gradle-plugin:2.0.1") |
Yigit Boyar | 2c1dce8 | 2023-08-15 16:29:06 +0000 | [diff] [blame] | 26 | implementation("supportBuildSrc:private") |
| 27 | implementation("supportBuildSrc:public") |
| 28 | implementation("supportBuildSrc:plugins") |
Aurimas | 114536a | 2024-10-08 17:04:28 -0700 | [diff] [blame] | 29 | implementation(libs.androidGradleSettingsPlugin) |
Aurimas | b9e9273 | 2022-04-15 22:46:36 +0000 | [diff] [blame] | 30 | testImplementation(libs.junit) |
| 31 | testImplementation(libs.truth) |
Daz DeBoer | e95a4b9 | 2021-11-04 21:58:21 +0000 | [diff] [blame] | 32 | } |
| 33 | |
| 34 | gradlePlugin { |
| 35 | plugins { |
| 36 | playgroundConventions { |
| 37 | id = "playground" |
| 38 | implementationClass = "androidx.playground.PlaygroundPlugin" |
| 39 | } |
| 40 | gradleEnterpriseConventions { |
Aurimas Liutikas | d3f4778 | 2024-04-23 17:27:29 +0000 | [diff] [blame] | 41 | id = "playground-develocity-conventions" |
| 42 | implementationClass = "androidx.playground.GradleDevelocityConventionsPlugin" |
Daz DeBoer | e95a4b9 | 2021-11-04 21:58:21 +0000 | [diff] [blame] | 43 | } |
| 44 | } |
Aurimas | 4a8a145 | 2021-11-11 17:56:56 -0800 | [diff] [blame] | 45 | } |