I have an spring boot maven project consists of so...
# community-support
j
I have an spring boot maven project consists of so many package and class files and so many dependencies now i need to migrate to gradle.. i tried using gradle init and when i am trying to gradle build i am getting so many errors...
v
That's more or less expected. The
init
task can only "fully" handle the most trivial cases. In all other cases you always have to do some things manually. Probably especially when you use things like Spring Boot.
j
ok thanks @Vampire
👌 1
v
When following some guide or the Spring Boot documentation and you apply the Spring Boot Gradle plugin and so on, make sure to not apply the Spring Dependency Management plugin. It is a relict from times when Gradle did not have native BOM support and by now does more harm than good and even its maintainer recommends not to use it anymore, but instead the built-in BOM support using
platform(...)
.
j
ok sire
👌 1