mirror of
https://github.com/google/guice.git
synced 2024-04-21 12:32:36 +00:00
This change only makes it possible to build with bazel and no changes to existing maven setup yet. PiperOrigin-RevId: 422630465
12 lines
258 B
Python
12 lines
258 B
Python
load("@rules_java//java:defs.bzl", "java_library")
|
|
|
|
package(default_visibility = ["//:src"])
|
|
|
|
java_library(
|
|
name = "beans",
|
|
exports = [
|
|
"@maven//:org_springframework_spring_beans",
|
|
"@maven//:org_springframework_spring_core",
|
|
],
|
|
)
|