Damien Martin-Guillerez | f1ce35f | 2016-12-21 18:29:04 +0100 | [diff] [blame] | 1 | # 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 | |
iirina | a835361 | 2019-08-06 14:06:09 +0200 | [diff] [blame] | 15 | load("@rules_java//java:defs.bzl", "java_import") |
| 16 | |
Damien Martin-Guillerez | f1ce35f | 2016-12-21 18:29:04 +0100 | [diff] [blame] | 17 | licenses(["notice"]) # Apache License 2.0 |
| 18 | |
| 19 | exports_files(["LICENSE"]) |
| 20 | |
| 21 | package( |
| 22 | default_visibility = ["//visibility:public"], |
| 23 | ) |
| 24 | |
| 25 | filegroup( |
| 26 | name = "srcs", |
| 27 | srcs = glob(["**"]), |
| 28 | ) |
| 29 | |
| 30 | # Executable for the databinding resource compiler. |
| 31 | java_import( |
| 32 | name = "exec", |
Adam Michael | 6265878 | 2017-04-20 11:15:31 -0400 | [diff] [blame] | 33 | jars = ["v2_3_1/exec.jar"], |
Damien Martin-Guillerez | f1ce35f | 2016-12-21 18:29:04 +0100 | [diff] [blame] | 34 | ) |