Ah, ok. Importing poi fixed it ```implementation (...
# datascience
j
Ah, ok. Importing poi fixed it
Copy code
implementation ("org.apache.poi:poi-ooxml:5.2.3")
j
Yes, that should work 🙂 We don't export ooxml as
api()
dependency, so to change global settings you need to explicitly depend on it.
🙏 1
j
Hey @Jolan Rensen [JB], thanks for the info. How likely is it, that explicitly importing POI next to the kdf-dep poi import will throw me into some kind of verision/dependency hell? kdf will continue its own versions of poi, right?
j
You might be able to avoid this by writing a version range instead of an exact version. I don't have much experience with it, but if I understand correctly, writing
Copy code
implementation("org.apache.poi:poi-ooxml") {
    version { require("5.2.3") }
}
will set the version to 5.2.3 unless a higher version appears from elsewhere, such as the dataframe dependency.