To minimize the plugin configuration it would be nice to set diff source:
- DiffSource type:
jgit
- provide reading gradle parameter
./gradlew -PdiffBase=develop
- diffBase: (computed using git)
private fun ObjectFactory.stringProperty(propertyName: String): Property<String> {
return property(String::class.javaObjectType)
.convention(
project.provider {
project.properties[propertyName].toString()
}
)
}
To minimize the plugin configuration it would be nice to set diff source:
jgit./gradlew -PdiffBase=develop