Davoud
Davoud

Reputation: 2993

How apache.commons.lang3 is added to Jhipster external libraries without adding to pom.xml file?

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

Answers (1)

Gaël Marziou
Gaël Marziou

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

Related Questions