Can I use symbols from a plugin in import
statements that are situated before the plugins {}
block?
// this symbol is in the com.example jar
import com.example.Symbol
plugins {
id("com.example")
}
// do stuff with Symbol
This somehow works on my machine but not in CI 🤔
Edit: I removed the import and use fqdn instead but still have the error so it looks like it is something else
✅ Nevermind, it's all good, that symbol was relocated in CI and not on my machine. Thanks for reading along 🦆