Gradle Goodness: Create Checksums for Archives
If we want to create a checksum for a file in Gradle we can use the ANT checksum task. We assign the file name to the file property of the task. Then the checksum task will generate a file with the...
View ArticleGradle Goodness: Create Checksums for Archives
If we want to create a checksum for a file in Gradle we can use the ANT checksum task. We assign the file name to the file property of the task. Then the checksum task will generate a file with the...
View ArticleGradle Goodness: Create Checksums for Archives
If we want to create a checksum for a file in Gradle we can use the ANT checksum task. We assign the file name to the file property of the task. Then the checksum task will generate a file with the...
View ArticleGradle Goodness: Create Checksums for Archives
If we want to create a checksum for a file in Gradle we can use the ANT checksum task. We assign the file name to the file property of the task. Then the checksum task will generate a file with the...
View ArticlePlugin News: Standalone App Runner
Runs a Grails application as a JAR file with an embedded Tomcat or Jetty server Related Posts:Plugin News: Standalone App RunnerGrails & Hudson Part 4: Automated DeploymentJetty or Vert.x for...
View ArticleGroovy Goodness: Adding Extra Methods Using Extension Modules
Groovy 2.0 brought us extension modules. An extension module is a JAR file with classes that provide extra methods to existing other classes like in the JDK or third-party libraries. Groovy uses this...
View ArticleGrails Goodness: Using Wrapper for Running Grails Commands Without Grails...
Since Grails 2.1 we can create a Grails wrapper. The wrapper allows developer to run Grails commands in a project without installing Grails first. The wrapper concept is also available in other...
View Article