Skip to content

Commit

Permalink
Changed props.version to props.pluginVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
faab007nl committed Dec 26, 2023
1 parent b87ff75 commit 763db51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def artifactId = 'GradleBasePlugin'
// /---> Major Version - Increment this when you make a breaking change
// | /---> Patch Version - Increment this when you add a new feature
// | | /---> Minor Version - Increment this when you make a bug fix
def versionNum = '3.1.2'
def versionNum = '3.1.3'

group = groupId
version = versionNum
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ publishing {
publications {
shadow(MavenPublication) { publication ->
project.shadow.component(publication)
version = "${props.version}_build-${System.getenv('GITHUB_RUN_NUMBER') ?: "manual"}"
version = "${props.pluginVersion}_build-${System.getenv('GITHUB_RUN_NUMBER') ?: "manual"}"
}
}
repositories {
Expand Down

0 comments on commit 763db51

Please sign in to comment.