xref: /aosp_15_r20/external/doclava/buildSrc/build.gradle.kts (revision feeed43c7c55e85932c547a3cefc559df175227c)
1*feeed43cSAndroid Build Coastguard Worker /*
2*feeed43cSAndroid Build Coastguard Worker  * Copyright (C) 2022 The Android Open Source Project
3*feeed43cSAndroid Build Coastguard Worker  *
4*feeed43cSAndroid Build Coastguard Worker  * Licensed under the Apache License, Version 2.0 (the "License");
5*feeed43cSAndroid Build Coastguard Worker  * you may not use this file except in compliance with the License.
6*feeed43cSAndroid Build Coastguard Worker  * You may obtain a copy of the License at
7*feeed43cSAndroid Build Coastguard Worker  *
8*feeed43cSAndroid Build Coastguard Worker  *      http://www.apache.org/licenses/LICENSE-2.0
9*feeed43cSAndroid Build Coastguard Worker  *
10*feeed43cSAndroid Build Coastguard Worker  * Unless required by applicable law or agreed to in writing, software
11*feeed43cSAndroid Build Coastguard Worker  * distributed under the License is distributed on an "AS IS" BASIS,
12*feeed43cSAndroid Build Coastguard Worker  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*feeed43cSAndroid Build Coastguard Worker  * See the License for the specific language governing permissions and
14*feeed43cSAndroid Build Coastguard Worker  * limitations under the License.
15*feeed43cSAndroid Build Coastguard Worker  */
16*feeed43cSAndroid Build Coastguard Worker 
<lambda>null17*feeed43cSAndroid Build Coastguard Worker plugins {
18*feeed43cSAndroid Build Coastguard Worker     // Support convention plugins written in Kotlin. Convention plugins are build scripts in 'src/main' that automatically become available as plugins in the main build.
19*feeed43cSAndroid Build Coastguard Worker     `kotlin-dsl`
20*feeed43cSAndroid Build Coastguard Worker }
21*feeed43cSAndroid Build Coastguard Worker 
<lambda>null22*feeed43cSAndroid Build Coastguard Worker repositories {
23*feeed43cSAndroid Build Coastguard Worker     // Use the plugin portal to apply community plugins in convention plugins.
24*feeed43cSAndroid Build Coastguard Worker     gradlePluginPortal()
25*feeed43cSAndroid Build Coastguard Worker }
26