gradle: fix missing Maven POM 'description' value

With the maven-publish plugin, description needs to be assigned, not
called.
This commit is contained in:
Florian Schmaus 2020-04-16 12:05:43 +02:00
parent 611b105843
commit 74be25b763
1 changed files with 1 additions and 1 deletions

View File

@ -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'