https://kotlinlang.org logo
Title
k

karelpeeters

07/03/2017, 7:41 PM
Don't you need to disable the dependencies? And the publishing stuff?
d

dumptruckman

07/03/2017, 7:58 PM
karelpeeters: how do I disable the dependencies of a plugin? I've tried
configurations {
    all*.exclude group: 'org.jetbrains', module: 'ideaIC'
}
with not much luck
k

karelpeeters

07/03/2017, 8:02 PM
Yea, that should remove the ideaIC module. Doesn't that work?
d

dumptruckman

07/03/2017, 8:07 PM
it shows up in the gradle window in Intellij as a dependency
k

karelpeeters

07/03/2017, 8:08 PM
Have you refreshed the gradle project?
You can also use
gradle dependencies
to make sure you get the up-to-date list.
d

dumptruckman

07/03/2017, 8:09 PM
ah
k

karelpeeters

07/03/2017, 8:11 PM
And does it work?
d

dumptruckman

07/03/2017, 8:12 PM
gradle dependencies
shows it in there
k

karelpeeters

07/03/2017, 8:12 PM
😞
d

dumptruckman

07/03/2017, 8:13 PM
listed under
compileClasspath
compileOnly
idea
testCompileClasspath
testCompileOnly
testRuntime
okay, i'm dumb
just realized it is com.jetbrains