xref: /aosp_15_r20/external/conscrypt/api-doclet/build.gradle (revision cd0cc2e34ba52cdf454361820a14d744e4bd531d)
1plugins {
2    id 'org.jetbrains.kotlin.jvm' version '2.0.0'
3}
4
5description = 'Conscrypt: API Doclet'
6
7kotlin {
8    jvmToolchain(11)
9}
10
11dependencies {
12    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
13}
14
15tasks.withType(Javadoc).configureEach {
16    // No need to javadoc the Doclet....
17    enabled = false
18}
19