Move `outdated` deps to regular rje deps (#752)

This means that it's in the lock file (so no-one needs to
re-resolve the dependencies), and also means that the tests
which are failing as we attempt to move to the BCR pass.

As part of this work, we'll need another RJE release, so
this also bumps the version in the module file.
diff --git a/private/tools/java/rules/jvm/external/maven/BUILD b/private/tools/java/rules/jvm/external/maven/BUILD
index 549bb6d..c2c118d 100644
--- a/private/tools/java/rules/jvm/external/maven/BUILD
+++ b/private/tools/java/rules/jvm/external/maven/BUILD
@@ -28,6 +28,9 @@
     main_class = "rules.jvm.external.maven.Outdated",
     visibility = ["//visibility:public"],
     deps = [
-        "@outdated//:org_apache_maven_maven_artifact",
+        artifact(
+            "org.apache.maven:maven-artifact",
+            repository_name = "rules_jvm_external_deps",
+        ),
     ],
 )