A Feel of Groovy DSL with an Example from Gradle

If you have used Gradle build system, probably you have already been used and benefited from the DSL capabilities of Groovy language. In this post, let us take a peek at such an example. Consider the following piece of DSL from a Gradle configuration. plugins { id 'java' } The plugins section…