In the current build setup, assets are included inside /src/main/resources/ and are packed in the game jar. IMO it is better to make assets and code separated for real game projects.
Assets better to be a separate project in gradle with no code in it that the game project depends on and it should be packaged separately to assets.jar.
See this for an example
https://github.com/Simsilica/Examples/tree/master/sigem
In the current build setup, assets are included inside
/src/main/resources/and are packed in the game jar. IMO it is better to make assets and code separated for real game projects.Assets better to be a separate project in gradle with no code in it that the game project depends on and it should be packaged separately to
assets.jar.See this for an example
https://github.com/Simsilica/Examples/tree/master/sigem