From 68142415bcf97c39ea6c3236bcf505bb0d8a58a1 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Tue, 13 Jul 2010 14:29:05 +0200 Subject: [PATCH] apply plugin: 'java' at bottom of gradle file for consistency with other 'apply' statements --- build.gradle | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index b5ff6376..ebfaf5fb 100644 --- a/build.gradle +++ b/build.gradle @@ -30,11 +30,6 @@ import org.springframework.build.Version.ReleaseType // ----------------------------------------------------------------------------- -// add basic tasks like 'clean' and 'assemble' to the root project. e.g.: allows -// running `gradle clean` from the root project and deleting the build directory -apply plugin: 'base' - - // ----------------------------------------------------------------------------- // Configuration for all projects including this one (the root project) // @@ -290,6 +285,10 @@ project(':spring-amqp-samples:stocks') { } +// add basic tasks like 'clean' and 'assemble' to the root project. e.g.: allows +// running `gradle clean` from the root project and deleting the build directory +apply plugin: 'base' + // add tasks like 'distArchive' apply from: "$rootDir/gradle/release.gradle"