From 6302cbd91af9030697ce3c9482ad6f43a0013d3d Mon Sep 17 00:00:00 2001 From: Andrei Koval Date: Tue, 22 Jan 2019 11:02:45 +0100 Subject: [PATCH] Fix typo in license name Change license name from "BSD Licence 3" to "BSD License 3". This typo fails automated license checks in a project that has hamcrest dependency. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 1d1d1dae..306f2488 100644 --- a/build.gradle +++ b/build.gradle @@ -48,7 +48,7 @@ def pomConfigurationFor(String pomName, String pomDescription) { licenses { license { - name = 'BSD Licence 3' + name = 'BSD License 3' url = 'http://opensource.org/licenses/BSD-3-Clause' } }