Don't you need to disable the dependencies? And th...
# gradle
k
Don't you need to disable the dependencies? And the publishing stuff?
d
karelpeeters: how do I disable the dependencies of a plugin? I've tried
Copy code
configurations {
    all*.exclude group: 'org.jetbrains', module: 'ideaIC'
}
with not much luck
k
Yea, that should remove the ideaIC module. Doesn't that work?
d
it shows up in the gradle window in Intellij as a dependency
k
Have you refreshed the gradle project?
You can also use
gradle dependencies
to make sure you get the up-to-date list.
d
ah
k
And does it work?
d
gradle dependencies
shows it in there
k
😞
d
listed under
compileClasspath
compileOnly
idea
testCompileClasspath
testCompileOnly
testRuntime
okay, i'm dumb
just realized it is com.jetbrains