Does anyone know what/how Java libraries have to p...
# intellij
b
Does anyone know what/how Java libraries have to publish, so that IntelliJ properly indexes them? I get red symbols for just one library (builds fine from gradle)
d
It should just work. How have you consumed the dependency?
b
Copy code
dependencies {
    implementation("com.bugsnag:bugsnag:$bugsnagVersion")
    implementation("com.launchdarkly:launchdarkly-java-server-sdk:$launchdarklyJavaSDKVersion")
}
Everything for Bugsnag works, but LaunchDarkly, all classes are red
which is what led me to ask about the publishing side— unclear why it'd work for one but not another
okay yeah it's something up with their latest release. earlier release are fine. i'll bother them about it. thanks!
a
b
huh interesting. thanks!
Ah but the dependency is a java lib though, not Kotlin
oh but it has kotlin deps
yep the suggested workaround in that KT issue fixed it