Macros need explicit registration

[]

Without this change, build_cleaner will not be able to fix usages of these macros once b/155296280 is fixed.

PiperOrigin-RevId: 334717466
Change-Id: I1e3e96e7601203600e34a11c4e306d39ee7efb79
diff --git a/distro/BUILD b/distro/BUILD
index da2c9b9..475697a 100644
--- a/distro/BUILD
+++ b/distro/BUILD
@@ -1,11 +1,11 @@
-package(
-    default_visibility = ["//visibility:private"],
-)
-
 load("@rules_java//java:defs.bzl", "version")
 load("@rules_pkg//:pkg.bzl", "pkg_tar")
 load("@rules_pkg//releasing:defs.bzl", "print_rel_notes")
 
+package(
+    default_visibility = ["//visibility:private"],
+)
+
 # Build the artifact to put on the github release page.
 pkg_tar(
     name = "rules_java-%s" % version,