Gradle
-
Enterprise Java
Specifying Gradle Build Properties
Properties are a valuable tool for easily customizing Gradle builds and the Gradle environment. I demonstrate some of these approaches…
Read More » -
Enterprise Java
The Gradle Interface: Gradle Build Metadata
As I’ve shown in previous posts such as “Identifying Gradle Conventions” and “Evolving Gradle Build from Ant Build: Importing Ant…
Read More » -
Enterprise Java
Differentiating Ant Target-Based Gradle Tasks
In my blog post Evolving Gradle Build from Ant Build: Importing Ant Build File, I demonstrated using Gradle‘s built-in AntBuilder-based…
Read More » -
Enterprise Java
Evolving Gradle Build from Ant Build: Importing Ant Build File
Changing the build system on a large project can be difficult and a lot of work. Fortunately for those migrating…
Read More » -
Enterprise Java
Identifying Gradle Conventions
Configuration by convention has many advantages, especially in terms of conciseness because developers do not need to explicitly configure things…
Read More » -
Enterprise Java
Simple Gradle Java Plugin Customization
As I demonstrated in the post A First Look at Building Java with Gradle, Gradle is particularly concise and easy…
Read More » -
Enterprise Java
Gradle Command-Line Conveniences
In my post A First Look at Building Java with Gradle, I briefly mentioned using Gradle‘s “gradle tasks” command to…
Read More » -
Enterprise Java
Gradle: do we need another build tool?
In the early days of Java development, we either didn’t see much of a need for build tools, or used…
Read More » -
Enterprise Java
Gradle Goodness: Running a Single Test
We can run test code with Gradle using the test task that is added by the Java plugin. By default…
Read More »