Almost all of us developers have faced this issue, to add all dependencies for a particular project.
What strategy generally I use to follow, go to maven repo, copy required maven/gradle dependency string and past into POM/build
isn't it good if we can centralize everything at a single place and add that as a parent in our POM ?
Many must have already done this, but in their own different way.
If Spring itself provides some parent POM which accumulate everything at a single place.
Just by adding that dependency in project POM, everything gets added.
All these POM's are called STARTERS.
Based on the requirement we can add appropriate Starter POM and all related dependencies will be added to our project
List of all starter POM's
What strategy generally I use to follow, go to maven repo, copy required maven/gradle dependency string and past into POM/build
isn't it good if we can centralize everything at a single place and add that as a parent in our POM ?
Many must have already done this, but in their own different way.
If Spring itself provides some parent POM which accumulate everything at a single place.
Just by adding that dependency in project POM, everything gets added.
All these POM's are called STARTERS.
Based on the requirement we can add appropriate Starter POM and all related dependencies will be added to our project
List of all starter POM's
No comments:
Post a Comment