Skip to content

Commit

Permalink
Update Kotlin config to work with Property
Browse files Browse the repository at this point in the history
Property requires the use of `set` (instead of `=`)
See: gradle/build-tool-roadmap#38
  • Loading branch information
loosebazooka committed Aug 19, 2022
1 parent cc383f6 commit 286bbca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ apply(plugin = "net.researchgate.release")
configure<ReleaseExtension> {
ignoredSnapshotDependencies.set(listOf("net.researchgate:gradle-release"))
with(git) {
requireBranch = "master"
requireBranch.set("master")
}
}
```
Expand Down

0 comments on commit 286bbca

Please sign in to comment.