Move offtopic.gradle to build.gradle

Not clear why this was set up like this o_O
This commit is contained in:
R. Tyler Croy 2015-09-02 04:51:16 -07:00
parent 413929de56
commit 0454b61371
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
2 changed files with 1 additions and 11 deletions

View File

@ -21,6 +21,7 @@ version = '0.2.0'
group = 'offtopic'
description =' Offtopic is a simple web application built with Ratpack for inspecting and consuming events from Kafka.'
defaultTasks 'check', 'assemble'
////////////////////////////////////////////////////////////////////////////////
// DEPENDENCY AND REPOSITORY MANAGEMENT

View File

@ -1,12 +1 @@
//include 'any', 'sub', 'projects'
rootProject.name = 'offtopic'
def setBuildFile(project) {
project.buildFileName = "${project.name}.gradle"
project.children.each {
setBuildFile(it)
}
}
setBuildFile(rootProject)