<@U0QBCLV62> I've since had someone else import th...
# gradle
j
@bamboo I've since had someone else import this project and they are having the same methods not getting resolved.
b
jlleitschuh: is it available somewhere?
j
No, private company repository.
b
If you come up with a minimal repro, please open an issue
j
Copy code
buildscript {
    repositories {
        maven {
            setUrl("<https://maven.eveoh.nl/content/repositories/releases>") // This doesn't resolve
        }
        maven {
            setUrl("<https://plugins.gradle.org/m2/>") // This doesn't resolve
        }
        mavenLocal()
        jcenter()
        gradleScriptKotlin()
    }

    dependencies {
        classpath("nl.eveoh:gradle-aspectj:1.6")
        classpath("org.akhikhl.gretty:gretty:1.4.1")
        classpath("com.netflix.nebula:nebula-project-plugin:3.3.0")
        classpath("nu.studer:gradle-jooq-plugin:2.0.2")
        classpath(kotlinModule("gradle-plugin"))
    }
}
Uhh... Let me see what I can do
@bamboo See part of the problem is that if I sit there and modify the file long enough (delete a line and add it) eventually all the method signatures will resolve themselves
But if I restart intellij they go back to not wanting to work
b
It sounds like some sort of timeout
The communication logic between Gradle and IntelliJ will be reviewed soon, we are aware of a few issues with it
j
Wacky.