This is an automated email from the ASF dual-hosted git repository.

sekikn pushed a commit to branch branch-3.2
in repository https://gitbox.apache.org/repos/asf/bigtop.git


The following commit(s) were added to refs/heads/branch-3.2 by this push:
     new 0f047e24 BIGTOP-3954. Fix the version definition in bigtop.bom so that 
`./gradlew setversion` works. (#1125)
0f047e24 is described below

commit 0f047e24aa994b81b54e4400471e5f22202b89e8
Author: Kengo Seki <[email protected]>
AuthorDate: Thu Jun 29 10:41:05 2023 +0900

    BIGTOP-3954. Fix the version definition in bigtop.bom so that `./gradlew 
setversion` works. (#1125)
    
    (cherry picked from commit 3a752513801cde61cacbf3046d3e4f429f26a7a4)
---
 bigtop.bom | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bigtop.bom b/bigtop.bom
index 30260728..515d9a30 100644
--- a/bigtop.bom
+++ b/bigtop.bom
@@ -93,8 +93,8 @@
 
 bigtop {
 /** Base Configuration of the mirror and archives */
-  base_version = "3.2.0"
-  version = base_version + "-SNAPSHOT"
+  version = "3.2.0-SNAPSHOT"
+  base_version = version.takeWhile { it != '-' }
   stack {
     'jdk' { version = "1." + ( System.getenv('BIGTOP_JDK') ?: "8" ); 
version_base = version }
     'scala' { version = '2.12.13'; version_base = version }

Reply via email to