I have this warning when doing my IntelliJ sync: `...
# squarelibraries
m
I have this warning when doing my IntelliJ sync:
Copy code
> Task prepareKotlinIdeaImport UP-TO-DATE
Could not resolve: app.cash.sqldelight:gradle-plugin:2.0.1
Could not resolve: app.cash.sqldelight:gradle-plugin:2.0.1
Everything works fine from the command line and as far as I can tell, IntelliJ seems to be ok too but this is itching me. Anyone has any clue what could cause this warning?
Alright, finally found it, this is because we were compiling our build logic with jvmTarget=11 (fix). It compiled fine because no symbol is actually used and run fine because the main build was run with java 17 but the IDE was complaining for (I think) good reasons.