Issue
I've a Gradle project structure and I'm using eclipse. I've installed Gradle plugin for Eclipse.
However tasks aren't shown in Gradle Tasks panel, so I'm not able to launch these ones.
project/
build.gradle
settings.gradle
.project
.classpath
I'm able to perform any task using command line.
Any ideas?
Solution
I assume you are using Buildship.
The Gragle Tasks view only shows tasks having properties group
and description
task myTask {
group = 'my group'
description = 'my description'
}
After changing your build.gradle
you must 1.) gradle-refresh the project and 2.) refresh the TasksView
Answered By - Frank Neblung