Skip to content

Commit

Permalink
Use reckon settings plugin for new release (#160)
Browse files Browse the repository at this point in the history
* Update settings.gradle

Add reckon settings plugin

* Update build.gradle

Remove reckon project plugin

* Update release.gradle

Cleanup reckon
  • Loading branch information
Alex-Vol authored Sep 16, 2024
1 parent da1a0f9 commit dc5aca9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ plugins {
id 'maven-publish'
id 'idea'
id 'eclipse'
id 'org.ajoberstar.reckon' version '0.18.3'
id 'org.ajoberstar.git-publish' version '4.2.2'
}

Expand Down
6 changes: 0 additions & 6 deletions gradle/release.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@

reckon {
scopeFromProp()
stageFromProp('milestone', 'rc', 'final')
}

reckonTagCreate.dependsOn check
7 changes: 7 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ pluginManagement {

plugins {
id "com.gradle.develocity" version "3.18"
id('org.ajoberstar.reckon.settings') version '0.18.3'
}

develocity {
Expand All @@ -26,5 +27,11 @@ develocity {
}
}

reckon {
defaultInferredScope = 'patch'
stages 'rc', 'final'
scopeCalc = calcScopeFromProp().or(calcScopeFromCommitMessages())
stageCalc = calcStageFromProp()
}

rootProject.name = 'gradle-clover-plugin'

0 comments on commit dc5aca9

Please sign in to comment.