Gradle
-
Groovy
Gradle Goodness: Using CopySpec with Tasks
To define a Copy task we specify the files we want to copy and to which directory. This definition is…
Read More » -
Groovy
Gradle Goodness: Using and Working with Gradle Version
To get the current Gradle version we can use the gradleVersion property of the Gradle object. This returns a string…
Read More » -
Groovy
Gradle Goodness: Running Groovy Scripts as Application
In a previous post we learned how to run a Java application in a Gradle project. The Java source file…
Read More » -
Core Java
Eliminating Development Redeploys using Gradle
For service development, my team recently moved away from Grails to the Dropwizard framework. One of the things I really…
Read More » -
Core Java
Gradle Goodness: Adding Dependencies Only for Packaging to War
My colleague, Tom Wetjens, wrote a blog post Package-only dependencies in Maven. He showed a Maven solution when we want…
Read More » -
Core Java
Using Gradle to Build & Apply AST Transformations
Recently, I wanted to both build and apply local ast transformations in a Gradle project. While I could find several…
Read More » -
Core Java
Getting Started with Gradle: Creating a Binary Distribution
After we have created a useful application, the odds are that we want to share it with other people. One…
Read More » -
Core Java
Publish JAR artifact using Gradle to Artifactory
So I have wasted (invested) a day or two just to find out how to publish a JAR using Gradle…
Read More » -
Core Java
Gradle Goodness: Getting More Dependency Insight
In most of our projects we have dependencies on other code, like libraries or other projects. Gradle has a nice…
Read More »