Skip to content

Commit

Permalink
Fix unspecified version bug
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexRuiz7 committed Aug 16, 2024
1 parent b55f4d2 commit 2ed6e95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/wazuh-indexer-setup/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ validateNebulaPom.enabled = false
buildscript {
ext {
opensearch_version = System.getProperty("opensearch.version", "2.14.0")
version = System.getProperty("version", "5.0.0")
wazuh_version = System.getProperty("version", "5.0.0")
revision = System.getProperty("revision", "0")
}

Expand All @@ -81,7 +81,7 @@ buildscript {

allprojects {
group = 'org.wazuh'
version = "${version}" + ".${revision}"
version = "${wazuh_version}" + ".${revision}"
}

repositories {
Expand Down

0 comments on commit 2ed6e95

Please sign in to comment.