Does not happen for the other subprojects, am I mi...
# intellij
b
Does not happen for the other subprojects, am I missing something?
k
What is your source directory? Can you post your
buils.gradle
?
b
it is exactly the same as the other projects. I'm using EAP, so I just updated it see if it was just a transient bug
and the update just failed on me, so I'll just redownload the latest…
Copy code
plugins {
    kotlin("jvm")
}

var kotlinVersion = "1.3.21"
var arrowVersion = "0.9.0-SNAPSHOT"

dependencies {
    compile(kotlin("stdlib-jdk8"))
    compile("io.github.microutils:kotlin-logging:1.6.22")

    implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.1.1")


    implementation("org.jetbrains.kotlin:kotlin-script-util:$kotlinVersion")
    implementation("org.jetbrains.kotlin:kotlin-script-runtime:$kotlinVersion")
    implementation("org.jetbrains.kotlin:kotlin-compiler-embeddable:$kotlinVersion")

    compile(project(":connector"))

    testCompile("org.junit.jupiter:junit-jupiter-api:5.3.2")

    compile("org.deeplearning4j:deeplearning4j:1.0.0-beta3")
    compile("org.deeplearning4j:deeplearning4j-core:1.0.0-beta3")
    compile("org.deeplearning4j:deeplearning4j-nlp:1.0.0-beta3")

}
that's the subproject gradle file
really similar to another subproject
(which updates properly)ç
(I just removed some dependencies and added the deeplearning4j)
settings.gradle:
Copy code
rootProject.name = 'stuff'

//include("scripts", "connector", "configurationmanager", "gui", "docs", "services")
include("nlpapp", "connector", "configurationmanager")
it works for every module except that one
can't find any difference
I even copy/pasted the build file from another pjocet
ok found it… the dir was named k otlin (with a space…)
I guess I should use a different font for that window