Tag: maven

  • On Maven Wrapper

    Let’s say you have built a project using maven. You used a specific version of maven to build it. Now you want to send this project to your friend. To build your project , your friend first needs to install maven in his machine. And also he might need to use the specific version you…

  • How to populate application properties dynamically in Spring Boot?

    Assumption: Maven is used to build the spring boot project Let’s say you want to populate application.properties dynamically while building the project in Spring Boot. You can fetch those properties from various sources like: pom.xml an external file System properties settings xml of Maven To accomplish this , define the properties in application.properties like this…