Skip to content

Commit

Permalink
change version 2.5-beta2 to 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jbil7 committed Feb 19, 2025
1 parent b7820cd commit 60706e6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ allprojects {
subprojects {
//apply plugin: 'java'

version '2.5-beta2'
version '2.5'
//sourceCompatibility = '17'
//targetCompatibility = '17'

Expand Down
2 changes: 1 addition & 1 deletion modules/cliModule/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'nkp.pspValidator'
version '2.5-beta2'
version '2.5'


// Create a JAR task
Expand Down
4 changes: 2 additions & 2 deletions modules/guiModule/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group 'nkp.pspValidator'
version '2.5-beta2'
version '2.5'

java {
//targetCompatibility = JavaVersion.VERSION_17
Expand Down Expand Up @@ -52,7 +52,7 @@ shadowJar {
configurations = [project.configurations.runtimeClasspath]

archiveBaseName.set('guiModule')
archiveVersion.set('2.5-beta2')
archiveVersion.set('2.5')
archiveClassifier.set('shadow') // Typically set to empty for the main artifact
manifest {
attributes 'Main-Class': 'nkp.pspValidator.gui.Main'
Expand Down
2 changes: 1 addition & 1 deletion modules/sharedModule/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group 'nkp.pspValidator'
version '2.5-beta2'
version '2.5'

// Create a JAR task
jar {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ public class Version {
/**
* Version code may contain up to one hyphen separating actual version code from suffix dev/alpha/beta, etc.
*/
public static String VERSION_CODE = "2.5-beta2";
public static String BUILD_DATE = "12. 2. 2025";
public static String VERSION_CODE = "2.5";
public static String BUILD_DATE = "19. 2. 2025";
}

0 comments on commit 60706e6

Please sign in to comment.