From ad5bc9d85f9c8005de05ffcdd53c4fa11bae1c5f Mon Sep 17 00:00:00 2001 From: Dai MIKURUBE Date: Wed, 29 Mar 2023 18:07:27 +0900 Subject: [PATCH] Add comments about NOTICE --- build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.gradle b/build.gradle index 9af90f4..bfcf293 100644 --- a/build.gradle +++ b/build.gradle @@ -142,18 +142,21 @@ javadoc { jar { metaInf { from rootProject.file("LICENSE") + // Not including NOTICE because it has license notice only about test dependencies. } } sourcesJar { metaInf { from rootProject.file("LICENSE") + // Not including NOTICE because it has license notice only about test dependencies. } } javadocJar { metaInf { from rootProject.file("LICENSE") + // Not including NOTICE because it has license notice only about test dependencies. } }