Redirect java proto libraries to protobuf

PiperOrigin-RevId: 683519662
Change-Id: I092615f52d9317e1937c730d66cfc19211feb163
diff --git a/java/defs.bzl.oss b/java/defs.bzl.oss
deleted file mode 100644
index 28f61ca..0000000
--- a/java/defs.bzl.oss
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 2019 The Bazel Authors. All rights reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#    http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-"""Starlark rules for building Java projects."""
-
-load("//third_party/bazel_rules/rules_java/java:java_binary.bzl", _java_binary = "java_binary")
-load("//third_party/bazel_rules/rules_java/java:java_import.bzl", _java_import = "java_import")
-load("//third_party/bazel_rules/rules_java/java:java_library.bzl", _java_library = "java_library")
-load("//third_party/bazel_rules/rules_java/java:java_plugin.bzl", _java_plugin = "java_plugin")
-load("//third_party/bazel_rules/rules_java/java:java_test.bzl", _java_test = "java_test")
-load("//third_party/bazel_rules/rules_java/java/common:java_common.bzl", _java_common = "java_common")
-load("//third_party/bazel_rules/rules_java/java/common:java_info.bzl", _JavaInfo = "JavaInfo")
-load("//third_party/bazel_rules/rules_java/java/common:java_plugin_info.bzl", _JavaPluginInfo = "JavaPluginInfo")
-load("//third_party/bazel_rules/rules_java/java/toolchains:java_package_configuration.bzl", _java_package_configuration = "java_package_configuration")
-load("//third_party/bazel_rules/rules_java/java/toolchains:java_runtime.bzl", _java_runtime = "java_runtime")
-load("//third_party/bazel_rules/rules_java/java/toolchains:java_toolchain.bzl", _java_toolchain = "java_toolchain")
-
-# Language rules
-
-java_binary = _java_binary
-java_test = _java_test
-java_library = _java_library
-java_plugin = _java_plugin
-java_import = _java_import
-
-# Toolchain rules
-
-java_runtime = _java_runtime
-java_toolchain = _java_toolchain
-java_package_configuration = _java_package_configuration
-
-# Proto rules
-# Deprecated: don't use java proto libraries from here
-java_proto_library = native.java_proto_library
-java_lite_proto_library = native.java_lite_proto_library
-
-# Modules and providers
-
-JavaInfo = _JavaInfo
-JavaPluginInfo = _JavaPluginInfo
-java_common = _java_common