All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.inject.grapher.BUILD Maven / Gradle / Ivy

The newest version!
# Copyright 2011 Google Inc.  All rights reserved.
# Author: [email protected] (Sam Berlin)
load("@rules_java//java:defs.bzl", "java_library")
load("//:mvn.bzl", "gen_maven_artifact")
load(
    "//:build_defs.bzl",
    "JAVAC_OPTS",
    "POM_VERSION",
)

package(
    default_visibility = ["//:src"],
)

java_library(
    name = "grapher",
    srcs = glob(["**/*.java"]),
    javacopts = JAVAC_OPTS,
    plugins = [
    ],
    tags = ["maven_coordinates=com.google.inject.extensions:guice-grapher:" + POM_VERSION],
    deps = [
        "//core/src/com/google/inject",
        "//third_party/java/guava/base",
        "//third_party/java/guava/collect",
    ],
)

filegroup(
    name = "javadoc-srcs",
    srcs = glob(["**/*.java"]),
)

gen_maven_artifact(
    name = "artifact",
    artifact_id = "guice-grapher",
    artifact_name = "Google Guice - Extensions - Grapher",
    artifact_target = ":grapher",
    is_extension = True,
    javadoc_srcs = [":javadoc-srcs"],
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy