diff --git a/hamcrest-core/hamcrest-core.gradle b/hamcrest-core/hamcrest-core.gradle index d2a91f8e..b69665a1 100644 --- a/hamcrest-core/hamcrest-core.gradle +++ b/hamcrest-core/hamcrest-core.gradle @@ -3,6 +3,11 @@ dependencies { } jar { + from('../') { + include 'LICENSE.txt' + into('META-INF') + } + manifest { attributes 'Implementation-Title': project.name, 'Implementation-Vendor': 'hamcrest.org', diff --git a/hamcrest-library/hamcrest-library.gradle b/hamcrest-library/hamcrest-library.gradle index fd8d19d1..47e3b0c9 100644 --- a/hamcrest-library/hamcrest-library.gradle +++ b/hamcrest-library/hamcrest-library.gradle @@ -3,6 +3,11 @@ dependencies { } jar { + from('../') { + include 'LICENSE.txt' + into('META-INF') + } + manifest { attributes 'Implementation-Title': project.name, 'Implementation-Vendor': 'hamcrest.org', diff --git a/hamcrest/hamcrest.gradle b/hamcrest/hamcrest.gradle index 52d86526..3a0ec8a2 100644 --- a/hamcrest/hamcrest.gradle +++ b/hamcrest/hamcrest.gradle @@ -9,6 +9,11 @@ dependencies { } jar { + from('../') { + include 'LICENSE.txt' + into('META-INF') + } + manifest { attributes 'Implementation-Title': project.name, 'Implementation-Vendor': 'hamcrest.org',