• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright (C) 2018 The Dagger Authors.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# Description:
16#   The Service Provider Interface for Dagger's binding graph model
17
18package(default_visibility = ["//:src"])
19
20load(
21    "//:build_defs.bzl",
22    "DOCLINT_HTML_AND_SYNTAX",
23    "DOCLINT_REFERENCES",
24)
25
26filegroup(
27    name = "spi-srcs",
28    srcs = glob(["*.java"]),
29)
30
31load("//tools:maven.bzl", "POM_VERSION", "pom_file")
32
33java_library(
34    name = "spi",
35    srcs = [":spi-srcs"],
36    javacopts = DOCLINT_HTML_AND_SYNTAX + DOCLINT_REFERENCES,
37    tags = ["maven_coordinates=com.google.dagger:dagger-spi:" + POM_VERSION],
38    deps = [
39        "//java/dagger:core",
40        "//java/dagger/model",
41        "@google_bazel_common//third_party/java/auto:value",
42        "@google_bazel_common//third_party/java/error_prone:annotations",
43        "@google_bazel_common//third_party/java/guava",
44        "@google_bazel_common//third_party/java/jsr330_inject",
45    ],
46)
47
48pom_file(
49    name = "pom",
50    artifact_id = "dagger-spi",
51    artifact_name = "Dagger SPI",
52    targets = [
53        "//java/dagger/model",
54        ":spi",
55    ],
56)
57