Slackbot
08/17/2023, 7:09 PMAdam
08/17/2023, 7:48 PMJoseph Baker
08/17/2023, 7:49 PMAdam
08/17/2023, 7:54 PMJoseph Baker
08/17/2023, 8:06 PMAdam
08/17/2023, 8:10 PMJoseph Baker
08/17/2023, 8:18 PMNiels Doucet
08/18/2023, 7:50 AMsettings.gradle(.kts)
file, it doesn't look like you've configured Application as a module.
In any case, if you would configure the Application folder as a module, it will not have access to that dependency.
See the following documentation for structuring multi-module gradle projects: https://docs.gradle.org/current/userguide/structuring_software_products.html#header
In this simple case (for now), it might make more sense to simply move your classes to the root module:
UMS > Application > src/main/java > ...
becomes
UMS > src/main/java > ...
Vampire
08/18/2023, 9:18 AM