UAST
Plugin DSL structure
Error
Sanity
New
Last modified: 03 December 2024Detects disallowed statements before 'plugins {}' block.
Due to the limitations of Gradle Plugin DSL, only a restricted set of Groovy statements is available before 'plugins {}
' block. The only options are 'buildscript {}
', 'pluginManagement {}
' and other 'plugins {}
'. See Gradle documentation
Example:
import foo.bar.Baz
plugins {} // reports 'plugins'
plugins {
foo() // reports 'foo'
id 'java'
}
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
IncorrectPluginDslStructure
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Gradle-Java, 243.23126 |
Thanks for your feedback!
Was this page helpful?