IntelliJ IDEA and Gradle - Cannot be applied to '(groovy.lang.Closure)'

后端 未结 8 562
感情败类
感情败类 2021-02-03 17:09

I have a Gradle file which, whenever I load open it in IntelliJ IDEA 14.1.5, shows IDE errors for the entire file. Namely all the errors seem to be either:

java.

相关标签:
8条回答
  • 2021-02-03 17:34

    For the first part of the question: group is a property, so there must be an assignment, not a function call. The right code is:

    group = 'com.me.blah'
    
    0 讨论(0)
  • 2021-02-03 17:38

    What I found is that this warning is from Groovy inspection of the Intelliji. So if your project is not pure groovy, you can disable this inspection by going to File -> settings -> Editor -> Inspections -> disable Groovy. Again, just a workaround.

    0 讨论(0)
提交回复
热议问题