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 // Apply the common convention plugin for shared build configuration between library and application projects.
19*feeed43cSAndroid Build Coastguard Worker id("com.google.doclava.java-common-conventions")
20*feeed43cSAndroid Build Coastguard Worker
21*feeed43cSAndroid Build Coastguard Worker // Apply the application plugin to add support for building a CLI application in Java.
22*feeed43cSAndroid Build Coastguard Worker application
23*feeed43cSAndroid Build Coastguard Worker }
24*feeed43cSAndroid Build Coastguard Worker
25*feeed43cSAndroid Build Coastguard Worker application {
26*feeed43cSAndroid Build Coastguard Worker mainClass.set("com.google.doclava.Doclava")
27*feeed43cSAndroid Build Coastguard Worker }