1# Copyright (C) 2017 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#   Tools for Dagger
17
18load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
19load(":maven_info.bzl", "maven_info_tests")
20
21package(default_visibility = ["//:src"])
22
23maven_info_tests()
24
25exports_files([
26    "pom-template.xml",
27])
28
29bzl_library(
30    name = "maven_bzl",
31    srcs = ["maven.bzl"],
32    deps = [":maven_info_bzl"],
33)
34
35bzl_library(
36    name = "maven_info_bzl",
37    srcs = ["maven_info.bzl"],
38    deps = ["@bazel_skylib//lib:unittest"],
39)
40
41bzl_library(
42    name = "dejetify_bzl",
43    srcs = ["dejetify.bzl"],
44)
45