Gradle’s bootRun and Window’s command length limit Sometimes Gradle’s bootRun and Window’s command length limit are two opponents. If you use bootRun to start your Spring Boot app from Gradle all class path dependencies will be added to the start command. Gradle will run something like this in the end: 1 java -jar MyApp.jar -classpath xx.jar,yy.jar,zz.jar,... That’s fine and will work for a really long time. But […]