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
If you want to use a particular class (my.package.Class) directly in a Moro cell, but it is not accessible and giving a Cannot find package my.package... error, you have to do the following:
Add the dependency containing the my.package.Class class to build.sbt.
In your conf/application.conf (or globally in conf/reference.conf), add my.package.Class to classesForJarPath.
(Optional) If you want Class to be available directly in each cell, add my.package.Class to imports in conf/application.conf (or conf/reference.conf).
Note that you only have to do this once per dependency.