You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After some reading, I am learning about the migration to Jakarta but am unable to figure out how that should really affect any new project. I started a new JavaFX + Kotlin application and the first thing I did was add guice and attempt the following:
val injector =Guice.createInjector(
TestModule()
)
TestModule is just a stub class extending AbstractModule. The following error now plagues:
`java.lang.NoClassDefFoundError: jakarta/inject/Provider```
No idea how to fix this or why it happens. Figure this should not be an issue with a brand new project.
Guice: 7.0.0
JavaFX: 11
Java: 17
The text was updated successfully, but these errors were encountered:
After some reading, I am learning about the migration to Jakarta but am unable to figure out how that should really affect any new project. I started a new JavaFX + Kotlin application and the first thing I did was add guice and attempt the following:
TestModule is just a stub class extending AbstractModule. The following error now plagues:
`java.lang.NoClassDefFoundError: jakarta/inject/Provider```
No idea how to fix this or why it happens. Figure this should not be an issue with a brand new project.
Guice: 7.0.0
JavaFX: 11
Java: 17
The text was updated successfully, but these errors were encountered: