Gizmo
02/02/2018, 10:26 AMallprojects {
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?