Yeah, you are probably right, but there are always other gradle-related questions coming up and it’s often necessary to describe the whole setting to enable help. I thought I could bundle them in this thread so I don’t always need to ask a new question from scratch.
So is there a way to convince Eclipse of using Gradle automatically?
I would also like to refer to a question I posted on StackOverflow a few days ago that still isn’t answered:
This question is a really basic gradle question about task execution in multi-project builds. For example when adding task hello << { task -> println "I'm $task.project.name" }
to allprojects in the root build file, I understand it like this that by running the ‘hello’ task on the root project, the hello task for each project down the hierarchy should be executed. In my setup that does not happen. Do I miss something?