Skip to content

Commit

Permalink
Merge pull request #1062 from reportportal/patch/release-mode-setup
Browse files Browse the repository at this point in the history
Update project-properties.gradle
  • Loading branch information
raikbitters authored Jan 8, 2025
2 parents 8dcc514 + 1f29796 commit bb8ea46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project-properties.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ def migrationsScriptsUrl = 'https://raw.githubusercontent.com/reportportal/migra
project.ext {
publishRepo = "https://maven.pkg.github.com/reportportal/commons-dao"
dependencyRepos = ["commons", "commons-rules", "commons-model", "commons-bom"]
releaseMode = project.hasProperty("releaseMode")
releaseMode = project.hasProperty("releaseMode") ? project.releaseMode.toBoolean() : false
hasDBSchema = project.hasProperty("DB_SCHEMA_POSTGRES")
scriptsUrl = commonScriptsUrl + (releaseMode ? getProperty('scripts.version') : 'develop')
migrationsUrl = migrationsScriptsUrl + (releaseMode ? getProperty('migrations.version') : 'develop')
Expand Down

0 comments on commit bb8ea46

Please sign in to comment.