MINOR: Don't include checker-qual in distribution (#16578)

Reviewers: Luke Chen <showuon@gmail.com>, Chia-Ping Tsai <chia7712@gmail.com>, Satish Duggana <satishd@apache.org>
This commit is contained in:
Mickael Maison 2024-07-15 17:39:38 +02:00 committed by GitHub
parent 3a442ffe32
commit dceda5e647
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 19 deletions

View File

@ -319,7 +319,6 @@ activation-1.1.1
MIT License MIT License
argparse4j-0.7.0, see: licenses/argparse-MIT argparse4j-0.7.0, see: licenses/argparse-MIT
checker-qual-3.19.0, see: licenses/checker-qual-MIT
jopt-simple-5.0.4, see: licenses/jopt-simple-MIT jopt-simple-5.0.4, see: licenses/jopt-simple-MIT
slf4j-api-1.7.36, see: licenses/slf4j-MIT slf4j-api-1.7.36, see: licenses/slf4j-MIT
slf4j-reload4j-1.7.36, see: licenses/slf4j-MIT slf4j-reload4j-1.7.36, see: licenses/slf4j-MIT

View File

@ -1934,7 +1934,9 @@ project(':storage') {
implementation project(':storage:storage-api') implementation project(':storage:storage-api')
implementation project(':server-common') implementation project(':server-common')
implementation project(':clients') implementation project(':clients')
implementation libs.caffeine implementation(libs.caffeine) {
exclude group: 'org.checkerframework', module: 'checker-qual'
}
implementation libs.slf4jApi implementation libs.slf4jApi
implementation libs.jacksonDatabind implementation libs.jacksonDatabind
implementation libs.metrics implementation libs.metrics

View File

@ -1,17 +0,0 @@
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.