apply plugin: 'java' at bottom of gradle file for consistency with other 'apply' statements

This commit is contained in:
Chris Beams
2010-07-13 14:29:05 +02:00
parent a1fe0c72ca
commit 68142415bc

View File

@@ -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"