DevOps / Gradle interview questions
What are the features are Spring Boot Gradle Plugin?
The Spring Boot Gradle Plugin provides Spring Boot support in Gradle. It collects all the jars on the classpath and builds a single, runnable jar, which makes it more convenient to execute and transport your service.
plugins { id 'org.springframework.boot' version '2.2.1.RELEASE' }
More Related questions...