Skip to content

Commit

Permalink
Parameterize project version
Browse files Browse the repository at this point in the history
  • Loading branch information
pouryafard75 committed Feb 11, 2024
1 parent 493423a commit 2fe286e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ plugins {
}

group = "com.github.tsantalis"
version = "3.0.4"
def version = project.hasProperty('version') ?
project.version
: '3.0.4'

applicationName = rootProject.name
mainClassName = "org.refactoringminer.RefactoringMiner"
Expand Down

0 comments on commit 2fe286e

Please sign in to comment.