blob: 5cc3d2fff68622e4e1e5cc44760c44faf70f6354 [file] [log] [blame]
Damien Martin-Guillerezf1ce35f2016-12-21 18:29:04 +01001# Copyright 2016 The Bazel Authors. All rights reserved.
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
iirinaa8353612019-08-06 14:06:09 +020015load("@rules_java//java:defs.bzl", "java_import")
16
Damien Martin-Guillerezf1ce35f2016-12-21 18:29:04 +010017licenses(["notice"]) # Apache License 2.0
18
19exports_files(["LICENSE"])
20
21package(
22 default_visibility = ["//visibility:public"],
23)
24
25filegroup(
26 name = "srcs",
27 srcs = glob(["**"]),
28)
29
30# Executable for the databinding resource compiler.
31java_import(
32 name = "exec",
Adam Michael62658782017-04-20 11:15:31 -040033 jars = ["v2_3_1/exec.jar"],
Damien Martin-Guillerezf1ce35f2016-12-21 18:29:04 +010034)