Is it possible to define my own version aliases? :...
# refreshversions
e
Is it possible to define my own version aliases? 🙂 For instance when using spring, I would like to alias these to a single version property (
version.spring.boot
):
Copy code
version.org.springframework.boot..spring-boot-actuator=2.4.5
version.org.springframework.boot..spring-boot-starter-test=2.4.5
version.org.springframework.boot..spring-boot-starter-webflux=2.4.5
j
it is possible yes https://github.com/jmfayard/refreshVersions/issues/356 although in the case of Spring Boot, I would consider their Bill Of Materials (BOM) so you don't have to manage versions in the first place. See start.spring.io
2
👍 2