I'm trying do define some dependencies in the root...
# gradle
g
I'm trying do define some dependencies in the root project of a multi project build:
Copy code
allprojects {
    plugins {
        kotlin("jvm") version "1.2.21"
    }

    dependencies {
        compile("org.slf4j:slf4j-api:1.7.22")
        compile("ch.qos.logback:logback-classic:1.1.9")
        compile(kotlin("stdlib-jdk8"))
    }

    repositories {
        mavenCentral()
    }
}
IntelliJ tells me that it can't resolve the reference to
compile
. What am I doing wrong?