Added Kotlin compile options configuration

This commit is contained in:
Erik C. Thauvin 2023-11-07 03:28:50 -08:00
parent adc856b1e4
commit d005944874
8 changed files with 652 additions and 40 deletions

View file

@ -229,7 +229,7 @@ public class DokkaOperation extends AbstractProcessOperation<DokkaOperation> {
/**
* Sets whether to fail documentation generation if Dokka has emitted a warning or an error.
*
* @param failOnWarning the fail on warning ;toggle
* @param failOnWarning {@code true} or {@code false}
* @return this operation instance
*/
public DokkaOperation failOnWarning(Boolean failOnWarning) {
@ -397,7 +397,7 @@ public class DokkaOperation extends AbstractProcessOperation<DokkaOperation> {
* Sets whether to suppress obvious functions such as inherited from {@code kotlin.Any} and
* {@link java.lang.Object java.lang.Object}.
*
* @param noSuppressObviousFunctions the suppress toggle
* @param noSuppressObviousFunctions {@code true} or {@code false}
* @return this operation instance
*/
public DokkaOperation noSuppressObviousFunctions(Boolean noSuppressObviousFunctions) {
@ -529,7 +529,7 @@ public class DokkaOperation extends AbstractProcessOperation<DokkaOperation> {
/**
* Sets whether to suppress inherited members that aren't explicitly overridden in a given class.
*
* @param suppressInheritedMembers the suppress toggle
* @param suppressInheritedMembers {@code true} or {@code false}
* @return this operation instance
*/
public DokkaOperation suppressInheritedMembers(Boolean suppressInheritedMembers) {

View file

@ -355,7 +355,7 @@ public class SourceSet {
/**
* Sets whether to generate links to JDK Javadocs.
*
* @param noJdkLink the no JDK link toggle
* @param noJdkLink {@code true} or {@code false}
* @return this operation instance
*/
public SourceSet noJdkLink(Boolean noJdkLink) {
@ -366,7 +366,7 @@ public class SourceSet {
/**
* Sets whether to create pages for empty packages.
*
* @param noSkipEmptyPackages the no skip empty packages toggle
* @param noSkipEmptyPackages {@code true} or {@code false}
* @return this operation instance
*/
public SourceSet noSkipEmptyPackages(boolean noSkipEmptyPackages) {
@ -377,7 +377,7 @@ public class SourceSet {
/**
* Sets whether to generate links to Standard library.
*
* @param noStdlibLink the no std lib link toggle
* @param noStdlibLink {@code true} or {@code false}
* @return this operation instance
*/
public SourceSet noStdlibLink(Boolean noStdlibLink) {
@ -426,7 +426,7 @@ public class SourceSet {
/**
* Sets Wwether to report undocumented declarations.
*
* @param reportUndocumented the report undocumented toggle
* @param reportUndocumented {@code true} or {@code false}
* @return this operation instance
*/
public SourceSet reportUndocumented(Boolean reportUndocumented) {
@ -459,7 +459,7 @@ public class SourceSet {
/**
* Sets whether to skip deprecated declarations.
*
* @param skipDeprecated the skip deprecated toggle
* @param skipDeprecated {@code true} or {@code false}
* @return this operation instance
*/
public SourceSet skipDeprecated(boolean skipDeprecated) {