Is spring-boot Maven or Gradle required?
2 answers
It is theoretically possible, but manually collecting the correct versions of the required JAR files seems impractical. Actually one of the goals of Spring Boot is to maintain a list of spring-boot-starters, so you can just use them in your build config file (like pom.xml) and the correct version will pull all the dependency JARs into your classpath ...
+3
source to share