-
- All Implemented Interfaces:
-
java.io.Serializable
public class KotlinQAExtension implements Serializable
Gradle extension for the Kotlin QA Plugin.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classKotlinQAExtension.Companion
-
Field Summary
Fields Modifier and Type Field Description private final Property<File>workingDirectoryprivate final Property<String>detektConfigurationFileNameprivate final Provider<File>detektConfigurationFile
-
Constructor Summary
Constructors Constructor Description KotlinQAExtension(Project project)
-
Method Summary
Modifier and Type Method Description final Property<File>getWorkingDirectory()The folder where the Detekt configuration will be generated. final Property<String>getDetektConfigurationFileName()The name of the generated Detekt configuration file. final Provider<File>getDetektConfigurationFile()The generated Detekt configuration file. -
-
Method Detail
-
getWorkingDirectory
final Property<File> getWorkingDirectory()
The folder where the Detekt configuration will be generated.
-
getDetektConfigurationFileName
final Property<String> getDetektConfigurationFileName()
The name of the generated Detekt configuration file.
-
getDetektConfigurationFile
final Provider<File> getDetektConfigurationFile()
The generated Detekt configuration file. Read only, use workingDirectory and detektConfigurationFileName to change the value of this property.
-
-
-
-