blob: cc540e04608598869fc2a6f4fc7e5ca043269ef2 [file] [log] [blame]
Daz DeBoere95a4b92021-11-04 21:58:21 +00001/*
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 */
Aurimas2084d872021-11-22 10:38:48 -080016
17plugins {
Aurimasb9e92732022-04-15 22:46:36 +000018 id("java-gradle-plugin")
Aurimas2084d872021-11-22 10:38:48 -080019 alias(libs.plugins.kotlinJvm)
Daz DeBoere95a4b92021-11-04 21:58:21 +000020}
21
Daz DeBoere95a4b92021-11-04 21:58:21 +000022dependencies {
Yigit Boyarc14adc72023-09-20 10:27:29 -070023 implementation(project(":shared"))
Aurimas Liutikas501642d2024-08-19 09:28:42 -070024 implementation("com.gradle:develocity-gradle-plugin:3.18")
Aurimas Liutikasd3f47782024-04-23 17:27:29 +000025 implementation("com.gradle:common-custom-user-data-gradle-plugin:2.0.1")
Yigit Boyar2c1dce82023-08-15 16:29:06 +000026 implementation("supportBuildSrc:private")
27 implementation("supportBuildSrc:public")
28 implementation("supportBuildSrc:plugins")
Aurimas114536a2024-10-08 17:04:28 -070029 implementation(libs.androidGradleSettingsPlugin)
Aurimasb9e92732022-04-15 22:46:36 +000030 testImplementation(libs.junit)
31 testImplementation(libs.truth)
Daz DeBoere95a4b92021-11-04 21:58:21 +000032}
33
34gradlePlugin {
35 plugins {
36 playgroundConventions {
37 id = "playground"
38 implementationClass = "androidx.playground.PlaygroundPlugin"
39 }
40 gradleEnterpriseConventions {
Aurimas Liutikasd3f47782024-04-23 17:27:29 +000041 id = "playground-develocity-conventions"
42 implementationClass = "androidx.playground.GradleDevelocityConventionsPlugin"
Daz DeBoere95a4b92021-11-04 21:58:21 +000043 }
44 }
Aurimas4a8a1452021-11-11 17:56:56 -080045}