-
- All Implemented Interfaces:
public interface KotlinCommonToolOptions
-
-
Method Summary
Modifier and Type Method Description abstract BooleangetAllWarningsAsErrors()Report an error if there are any warnings Default value: false abstract UnitsetAllWarningsAsErrors(Boolean allWarningsAsErrors)Report an error if there are any warnings Default value: false abstract BooleangetSuppressWarnings()Generate no warnings Default value: false abstract UnitsetSuppressWarnings(Boolean suppressWarnings)Generate no warnings Default value: false abstract BooleangetVerbose()Enable verbose logging output Default value: false abstract UnitsetVerbose(Boolean verbose)Enable verbose logging output Default value: false abstract List<String>getFreeCompilerArgs()A list of additional compiler arguments Default value: emptyList() abstract UnitsetFreeCompilerArgs(List<String> freeCompilerArgs)A list of additional compiler arguments Default value: emptyList() -
-
Method Detail
-
getAllWarningsAsErrors
abstract Boolean getAllWarningsAsErrors()
Report an error if there are any warnings Default value: false
-
setAllWarningsAsErrors
abstract Unit setAllWarningsAsErrors(Boolean allWarningsAsErrors)
Report an error if there are any warnings Default value: false
-
getSuppressWarnings
abstract Boolean getSuppressWarnings()
Generate no warnings Default value: false
-
setSuppressWarnings
abstract Unit setSuppressWarnings(Boolean suppressWarnings)
Generate no warnings Default value: false
-
getVerbose
abstract Boolean getVerbose()
Enable verbose logging output Default value: false
-
setVerbose
abstract Unit setVerbose(Boolean verbose)
Enable verbose logging output Default value: false
-
getFreeCompilerArgs
abstract List<String> getFreeCompilerArgs()
A list of additional compiler arguments Default value: emptyList()
-
setFreeCompilerArgs
abstract Unit setFreeCompilerArgs(List<String> freeCompilerArgs)
A list of additional compiler arguments Default value: emptyList()
-
-
-
-