Reputation: 2911
As in question the pom.xml from started does not provide the version information
Upvotes: 3
Views: 5356
Reputation: 191
Expand the maven dependencies folder in the project explorer of the IDE.
The version number is present at the end of the file name, like
spring-boot-starter-data-jpa-2.5.5.jar
Here 2.5.5 is the version number of the corresponding file.
Upvotes: 1
Reputation: 2177
There are couple of ways you can find the version.
<parent>
tag mentioned in the pom.xml. In the case of Spring Boot Data JPA Starter pom.xml the version is specified in spring-boot-build pom.xml within the properties tag. You can check the below link for the pom.xml definition : Upvotes: 0
Reputation: 1948
Using dependency tree we can see versions of all dependencies in the maven project.
mvn dependency:tree -Dverbose
Upvotes: 4