dev.sunnyday.test.impact.plugin.extension.TestImpactExtension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-impact-plugin Show documentation
Show all versions of test-impact-plugin Show documentation
Skip test runtime of unchanged gradle modules
package dev.sunnyday.test.impact.plugin.extension
import org.gradle.api.tasks.Internal
import org.gradle.api.tasks.Nested
open class TestImpactExtension {
@get:Internal
var testTaskNameProvider: TestTaskNameProvider = TestTaskNameProvider { listOf("test") }
@get:Nested
var changesSource: ChangesSource = ChangesSource(::emptyList)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy