Nick
09/01/2022, 5:46 PM1.7.0
and 1.4.32
. Is there any possibility that there could be some sort of conflict since the versions are different? What about a similar situation with something like Jetpack Compose or Koin?August Lilleaas
09/01/2022, 6:51 PMNick
09/01/2022, 6:54 PMAndrew O'Hara
09/01/2022, 7:45 PM1.7.0
. Normally, this won't be an issue, but it's caused me problems before.
Javalin 3's annotation-based OpenApi integration only works with kotlin stdlib 1.4
and below, but some of my other libraries would upgrade the stdlib past that. I suppose so long as those libraries didn't depend on any 1.5+
features, I could have excluded the stdlib from them, but your best best would be to just use the latest version of the stdlib, if possible. The only reason it was an issue for me was that upgrading javalin would have been a pain, and I wanted to migrate to another server anyway.ephemient
09/01/2022, 11:02 PMephemient
09/01/2022, 11:03 PMNick
09/02/2022, 2:44 PM