Gradle: build.gradle vs. settings.gradle vs. gradle.properties 1. Overview In this article, we’ll look at the different configuration files of a Gradle Java project. Also, we’ll see the details of an actual build. You can check this article for a general introduction to Gradle. 2. build.gradle Let’s assume that we’re just creating a… Continue Reading gradle-build-settings-properties

Introduction to Gradle 1. Overview Gradle is a Groovy-based build management system designed specifically for building Java-based projects. Installation instructions can be found here. 2. Building Blocks – Projects and Tasks In Gradle, Builds consist of one or more projects and each project consists of one or more tasks. A… Continue Reading gradle