Dependency Versioning Strategies
About
Types of Dependency Versioning in Maven
1. Fixed Versioning (Explicit Version)
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>3.1.0</version>
</dependency>2. Floating Versioning (Using LATEST and RELEASE)
3. Version Ranges
4. Dependency Management with BOM (Bill of Materials)
5. SNAPSHOT Versions (For Development)
Last updated