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