File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
common-build-logic/src/main/kotlin Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 11tasks.register(" printSemanticVersion" ) {
2+ notCompatibleWithConfigurationCache(" printSemanticVersion is not yet compatible with configuration cache" )
23 doLast {
34 println (" ${project.name} ${common.semanticversion.getSemanticVersion(project)} " )
45 }
56}
67
78tasks.register(" incrementSemanticVersionPatch" ) {
9+ notCompatibleWithConfigurationCache(" incrementSemanticVersionPatch is not yet compatible with configuration cache" )
810 doLast {
911 common.semanticversion.incrementSemanticVersionPatch(project)
1012 }
1113}
1214tasks.register(" incrementSemanticVersionMinor" ) {
15+ notCompatibleWithConfigurationCache(" incrementSemanticVersionMinor is not yet compatible with configuration cache" )
1316 doLast {
1417 common.semanticversion.incrementSemanticVersionMinor(project)
1518 }
1619}
1720tasks.register(" incrementSemanticVersionMajor" ) {
21+ notCompatibleWithConfigurationCache(" incrementSemanticVersionMajor is not yet compatible with configuration cache" )
1822 doLast {
1923 common.semanticversion.incrementSemanticVersionMajor(project)
2024 }
Original file line number Diff line number Diff line change 1- # Mon May 12 05:49:58 UTC 2025
2- version =2.0.419
1+ # Mon May 19 23:14:34 IDT 2025
2+ version =2.0.420
You can’t perform that action at this time.
0 commit comments