- Basically doing same what framework/boot does for jar manifests.
- Copied gradle settings from boot which gives us dot format like
Automatic-Module-Name: spring.shell.core
- Fixes#529
- This is a fix for regression introduced in a9a420df22
which was an attempt to work better with boot's aot plugin.
- Fix is a bit hacky but should work until we find better fix for this using
tooling from gradle.
- Fixes#521
- Looks like with gradle we don't get automatic utf-8 encoding with compiler
so add it and same time use separate JavaConventions as we want to
apply it to modules and samples.
- Relates #470