From 6d4d580416ad3babd977103d50a731878de8c947 Mon Sep 17 00:00:00 2001 From: marko-bekhta Date: Thu, 11 Sep 2025 16:07:15 +0200 Subject: [PATCH] [#2501] Include license file in the META-INF of published artifacts --- publish.gradle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/publish.gradle b/publish.gradle index 6d05724fa..36856eb50 100644 --- a/publish.gradle +++ b/publish.gradle @@ -24,6 +24,11 @@ jar { 'Implementation-Url': 'https://hibernate.org/reactive', ) } + metaInf { + from(rootProject.projectDir, { + include "LICENSE" + }) + } } javadoc {