1*2bf66424SCole Faust// 2*2bf66424SCole Faust// Copyright (C) 2020 The Android Open Source Project 3*2bf66424SCole Faust// 4*2bf66424SCole Faust// Licensed under the Apache License, Version 2.0 (the "License"); 5*2bf66424SCole Faust// you may not use this file except in compliance with the License. 6*2bf66424SCole Faust// You may obtain a copy of the License at 7*2bf66424SCole Faust// 8*2bf66424SCole Faust// http://www.apache.org/licenses/LICENSE-2.0 9*2bf66424SCole Faust// 10*2bf66424SCole Faust// Unless required by applicable law or agreed to in writing, software 11*2bf66424SCole Faust// distributed under the License is distributed on an "AS IS" BASIS, 12*2bf66424SCole Faust// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*2bf66424SCole Faust// See the License for the specific language governing permissions and 14*2bf66424SCole Faust// limitations under the License. 15*2bf66424SCole Faust// 16*2bf66424SCole Faust 17*2bf66424SCole Faustpackage { 18*2bf66424SCole Faust default_applicable_licenses: ["external_jackson-annotations_license"], 19*2bf66424SCole Faust} 20*2bf66424SCole Faust 21*2bf66424SCole Faust// Added automatically by a large-scale-change 22*2bf66424SCole Faust// See: http://go/android-license-faq 23*2bf66424SCole Faustlicense { 24*2bf66424SCole Faust name: "external_jackson-annotations_license", 25*2bf66424SCole Faust visibility: [":__subpackages__"], 26*2bf66424SCole Faust license_kinds: [ 27*2bf66424SCole Faust "SPDX-license-identifier-Apache-2.0", 28*2bf66424SCole Faust ], 29*2bf66424SCole Faust license_text: [ 30*2bf66424SCole Faust "src/main/resources/META-INF/LICENSE", 31*2bf66424SCole Faust ], 32*2bf66424SCole Faust} 33*2bf66424SCole Faust 34*2bf66424SCole Faustjava_library_host { 35*2bf66424SCole Faust name: "jackson-annotations", 36*2bf66424SCole Faust srcs: [ 37*2bf66424SCole Faust "src/main/**/*.java", 38*2bf66424SCole Faust ], 39*2bf66424SCole Faust errorprone: { 40*2bf66424SCole Faust javacflags: [ 41*2bf66424SCole Faust "-Xep:BoxedPrimitiveEquality:WARN", 42*2bf66424SCole Faust ], 43*2bf66424SCole Faust }, 44*2bf66424SCole Faust} 45