From 74be25b76387b07db277f5453340bac7b4f2181e Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Thu, 16 Apr 2020 12:05:43 +0200 Subject: [PATCH] gradle: fix missing Maven POM 'description' value With the maven-publish plugin, description needs to be assigned, not called. --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index bc1db1ef..e938afea 100644 --- a/build.gradle +++ b/build.gradle @@ -120,7 +120,7 @@ subprojects { artifact testsJar pom { name = 'PGPainless' - description 'Simple to use OpenPGP API for Java based on Bouncycastle' + description = 'Simple to use OpenPGP API for Java based on Bouncycastle' url = 'https://github.com/pgpainless/pgpainless' inceptionYear = '2018'