dev.sunnyday.test.impact.plugin.domain.model.ImpactProject.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.domain.model
import java.io.Serializable
internal data class ImpactProject(
val path: ProjectPath,
val dirPath: String,
var hasChanges: Boolean = false
) : Serializable {
override fun toString(): String {
return path
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy