Adding new dependecies in Spring Boot
已回答
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
请先登录再写评论。
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!