Kengo Seki created BIGTOP-3954:
----------------------------------
Summary: Fix the version definition in bigtop.bom so that
`./gradlew setversion` works
Key: BIGTOP-3954
URL: https://issues.apache.org/jira/browse/BIGTOP-3954
Project: Bigtop
Issue Type: Bug
Reporter: Kengo Seki
Assignee: Kengo Seki
In reviewing BIGTOP-3953, I found {{./gradlew setversion}} doesn't work for
bigtop.bom before I knew it.
{code:java}
$ ./gradlew all-components
> Task :all-components
bigtop 3.3.0-SNAPSHOT stack includes the following components
...
$ ./gradlew setversion -Pnextversion=3.4.0
...
BUILD SUCCESSFUL in 721ms
1 actionable task: 1 executed
$ ./gradlew all-components
> Task :all-components
bigtop 3.3.0-SNAPSHOT stack includes the following components
...
{code}
It worked correctly at least before 3.2.0.
{code:java}
$ git checkout rel/3.1.0
$ ./gradlew all-components
Starting a Gradle Daemon (subsequent builds will be faster)
> Task :all-components
bigtop 3.1.0 stack includes the following components
...
$ ./gradlew setversion -Pnextversion=3.1.1
...
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
$ ./gradlew all-components
> Task :all-components
>
>
bigtop 3.1.1 stack includes the following components
...
{code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)