Adding new dependecies in Spring Boot
Answered
Please if someone knows the answer to this dumb question.
Let's say I created a spring boot project with devtools, lombok and thymeleaf dependencies (starters).
After that how can I add more of them without copy-pasting dependencies to pom.xml file? Where can I find that so I can click on dependencies like when I was creating the project?
Essentially I want this:
Like in eclipse you got edit starters window:

Thanks
Please sign in to leave a comment.
The libraries chooser is only given on initial project creation. After the project is created use Add Maven Dependency action to include needed library into the project.
Thank you Andrey Dernov!