Maven Things
Everything related to maven
Missing pom.xml version
If version in pom.xml isnt mentioned, then how does spring boot know which version to use ?
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent><!-- referencing parent pom.xml -->
<parent>
<groupId>com.example</groupId>
<artifactId>spring-demo</artifactId>
<version>0.0.1</version>
<relativePath>../pom.xml</relativePath>
</parent>Maven Build Phases
Last updated