Viktoriia
Viktoriia

Reputation: 77

could not find property 'sourceSets' on root project gradle

I'm trying run gradle task. Before running one task I want to see all available tasks gradle tasks. To do it I go to the directory of my project, where is file build.gradle. When I have executed command I got an error

could not find property 'sourceSets' on root project gradle

Upvotes: 6

Views: 13271

Answers (1)

Opal
Opal

Reputation: 84824

Plugins that are applied to build.gradle should be at the very beginning of the build.gradle script. Move:

apply plugin: 'java'
apply plugin: 'findbugs'

to the beginning of the script.

Upvotes: 7

Related Questions