**Describe the bug** When building [Selenium](https://github.com/seleniumhq/selenium) with latest we are getting an `invalid Automatic-Module-Name: com.graphql-java` in the manifest. There are two problems with that: * The project is dataloader, not graphql itself. * Module names need to be valid package names, and a dash character isn’t allowed The better name is probably something like com.graphql.dataloader or similar To get around this you just need to update gradle config to do what the [Gradle docs](https://docs.gradle.org/current/userguide/java_library_plugin.html#sec:java_library_modular_auto) suggests **To Reproduce** Update https://github.com/SeleniumHQ/selenium/blob/e92b16f0832da62204bda5d01fbc430ec9401deb/java/maven_deps.bzl to latest. And then run `bazel build grid` in a terminal