Posts

Showing posts from September, 2019

Spring boot with gradle

Image
In this post we will discuss how to create a simple spring boot application with Gradle. what is Gradle Gradle  is a build automation system that is based upon the concepts from Apache Maven and Apache Ant. It uses  domain-specific language   Groovy , differentiating it from Apache Maven, which uses XML for its project configuration. Gradle uses directed acyclic graph to determine the task order. Several developers created Gradle and first released in 2007, and in 2013, it was  adopted by Google  as the build system for Android projects. It was designed to support multi-project builds that are expected to be quite huge. It also allows for incrementally adding to your build, because it knows which parts of your project are updated. Tasks that are dependent on updated parts are no longer re-executed. For now, the latest stable release is version 3.4, which was launched in February 2017. It supports development and subsequent deployment using Java, Scala...