Skip to content

Commit

Permalink
Using semantic version (SemVer) scheme for KeY (#3523)
Browse files Browse the repository at this point in the history
  • Loading branch information
wadoon authored Oct 28, 2024
2 parents 2a811b6 + a779724 commit a59c293
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ static def getDate() {
}

// The $BUILD_NUMBER is an environment variable set by Jenkins.
def build = System.env.BUILD_NUMBER == null ? "" : "-${System.env.BUILD_NUMBER}"
def build = System.env.BUILD_NUMBER == null ? "-dev" : "-${System.env.BUILD_NUMBER}"

group = "org.key-project"
version = "2.13.0$build"
version = "2.12.4$build"

subprojects {
apply plugin: "java"
Expand Down

0 comments on commit a59c293

Please sign in to comment.