From b2362e4c75f286280864651d97ec7d7ab1a5edf1 Mon Sep 17 00:00:00 2001 From: Alex Tymchenko Date: Tue, 21 May 2024 18:11:39 +0100 Subject: [PATCH] When generating our custom `MANIFEST.mf`, include the notion of the software license under which the artifact is distributed. --- buildSrc/src/main/kotlin/write-manifest.gradle.kts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buildSrc/src/main/kotlin/write-manifest.gradle.kts b/buildSrc/src/main/kotlin/write-manifest.gradle.kts index 853bb27e..fb24fb60 100644 --- a/buildSrc/src/main/kotlin/write-manifest.gradle.kts +++ b/buildSrc/src/main/kotlin/write-manifest.gradle.kts @@ -91,7 +91,8 @@ val manifestAttributes = mapOf( "Build-OS" to buildOs(), IMPLEMENTATION_TITLE.toString() to implementationTitle(), IMPLEMENTATION_VERSION.toString() to project.version, - IMPLEMENTATION_VENDOR.toString() to "TeamDev" + IMPLEMENTATION_VENDOR.toString() to "TeamDev", + "Bundle-License" to "https://www.apache.org/licenses/LICENSE-2.0.txt" ) /**