This is an automated email from the ASF dual-hosted git repository.
guyuqi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bigtop.git
The following commit(s) were added to refs/heads/master by this push:
new 3a752513 BIGTOP-3954. Fix the version definition in bigtop.bom so that
`./gradlew setversion` works. (#1125)
3a752513 is described below
commit 3a752513801cde61cacbf3046d3e4f429f26a7a4
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)
---
bigtop.bom | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bigtop.bom b/bigtop.bom
index 473020ab..6123b679 100644
--- a/bigtop.bom
+++ b/bigtop.bom
@@ -93,8 +93,8 @@
bigtop {
/** Base Configuration of the mirror and archives */
- base_version = "3.3.0"
- version = base_version + "-SNAPSHOT"
+ version = "3.3.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 }