Currently the dependency versions need to be in the version catalogue or buildscript. It would be nice if they could be parsed from comments inside the module-info, similar to how runtimeOnly deps are handled. For example:
module example {
requires org.slf4j; // version 2.0.7
}
Currently the dependency versions need to be in the version catalogue or buildscript. It would be nice if they could be parsed from comments inside the module-info, similar to how runtimeOnly deps are handled. For example: