From a633a6a74e8afe40d6a311342b0549f9c8826285 Mon Sep 17 00:00:00 2001 From: Alex-Vol Date: Mon, 16 Sep 2024 14:42:11 +0300 Subject: [PATCH] Update settings.gradle Add new version of reckon --- settings.gradle | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/settings.gradle b/settings.gradle index 2e7facf..fca687d 100644 --- a/settings.gradle +++ b/settings.gradle @@ -8,6 +8,7 @@ pluginManagement { plugins { id "com.gradle.develocity" version "3.18" + id('org.ajoberstar.reckon.settings') version '0.18.3' } develocity { @@ -25,6 +26,15 @@ develocity { } } } +plugins { + ' +} +reckon { + defaultInferredScope = 'patch' + stages 'rc', 'final' + scopeCalc = calcScopeFromProp().or(calcScopeFromCommitMessages()) + stageCalc = calcStageFromProp() +} rootProject.name = 'gradle-clover-plugin'