This is an automated email from the ASF dual-hosted git repository.

mimaison pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new dceda5e647c MINOR: Don't include checker-qual in distribution (#16578)
dceda5e647c is described below

commit dceda5e647cf44226c2be5e148e0be60ce665db9
Author: Mickael Maison <[email protected]>
AuthorDate: Mon Jul 15 17:39:38 2024 +0200

    MINOR: Don't include checker-qual in distribution (#16578)
    
    
    Reviewers: Luke Chen <[email protected]>, Chia-Ping Tsai 
<[email protected]>, Satish Duggana <[email protected]>
---
 LICENSE-binary            |  1 -
 build.gradle              |  4 +++-
 licenses/checker-qual-MIT | 17 -----------------
 3 files changed, 3 insertions(+), 19 deletions(-)

diff --git a/LICENSE-binary b/LICENSE-binary
index 3f3b5e578c5..0ca280efeda 100644
--- a/LICENSE-binary
+++ b/LICENSE-binary
@@ -319,7 +319,6 @@ activation-1.1.1
 MIT License
 
 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
 slf4j-api-1.7.36, see: licenses/slf4j-MIT
 slf4j-reload4j-1.7.36, see: licenses/slf4j-MIT
diff --git a/build.gradle b/build.gradle
index 7e7ae4e16d4..3abe8fc2d0f 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1934,7 +1934,9 @@ project(':storage') {
     implementation project(':storage:storage-api')
     implementation project(':server-common')
     implementation project(':clients')
-    implementation libs.caffeine
+    implementation(libs.caffeine) {
+      exclude group: 'org.checkerframework', module: 'checker-qual'
+    }
     implementation libs.slf4jApi
     implementation libs.jacksonDatabind
     implementation libs.metrics
diff --git a/licenses/checker-qual-MIT b/licenses/checker-qual-MIT
deleted file mode 100644
index 89de354795e..00000000000
--- a/licenses/checker-qual-MIT
+++ /dev/null
@@ -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.

Reply via email to