Reputation: 2993
I see apache.commons.lang3 library used in Jhipster's source but I cannot find its maven dependency inside pom.xml file. There are other dependencies like that as well and I want to know how they were added? or Is their corresponding Jar file is added while installing?
Upvotes: 0
Views: 87
Reputation: 16294
Most likely, they come from jhipster-dependencies
import which is a BOM. This is also used by Spring Boot.
You can check with mvnw dependency:tree
Upvotes: 1