Description
In reviewing BIGTOP-3953, I found ./gradlew setversion doesn't work for bigtop.bom before I knew it.
$ ./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 ...
It worked correctly at least before 3.2.0.
$ 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 ...