-3

I am trying to set up my own instance of the Spring Initializr. I want to add more libraries and starters for internal use.

So far I've followed Spring's documentation and set up an application that is able to provide the dependencies I add there. That is nice, but I also want all the dependencies and other configurations available at start.spring.io to be present in my instance as well.

The only way I could find so far is to manually add them to my properties file. This is far from ideal since it's a rather lengthy configuration and makes the whole thing prone to mistakes.

Is there an easier way to do that?

renke
  • 1,180
  • 2
  • 12
  • 27
  • the "easiest" you can try is: [How can I include a YAML file inside another?](https://stackoverflow.com/q/528281/592355) – xerx593 Dec 06 '21 at 02:41
  • ..or just fork/copy&paste that https://github.com/spring-io/start.spring.io/, and maintain... – xerx593 Dec 06 '21 at 02:42

1 Answers1

0
  • For managing libraries, you should use parent pom (for the Maven project)
  • For synchronizing Spring Boot's config properties file, you should try Spring Cloud config that is all settings are able to manage by a single git repository
huytmb
  • 3,647
  • 3
  • 12
  • 18