We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29beee5 commit 5ef57a1Copy full SHA for 5ef57a1
plugin/src/main/kotlin/org/neotech/plugin/rootcoverage/RootCoveragePluginExtension.kt
@@ -1,5 +1,11 @@
1
package org.neotech.plugin.rootcoverage
2
3
+import org.gradle.api.Project
4
+
5
+fun Project.rootCoverage(configure: RootCoveragePluginExtension.() -> Unit) {
6
+ extensions.configure(RootCoveragePluginExtension::class.java, configure)
7
+}
8
9
open class RootCoveragePluginExtension {
10
11
var generateCsv: Boolean = false
0 commit comments