From a9bf46456d3c2a2272703abdf7257899bec7673d Mon Sep 17 00:00:00 2001 From: JohnnyJayJay Date: Wed, 9 Nov 2022 15:41:22 +0100 Subject: [PATCH] Add missing project information to pom --- build.gradle.kts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index beceee5..6b39d99 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -39,6 +39,11 @@ publishing { publications { create("main") { pom { + name.set("softauthn") + description.set("softauthn provides an implementation of the WebAuthn API and a software authenticator " + + "in Java, using the java-webauthn-server library for data models. It can be used to test " + + "WebAuthn backends.") + url.set("https://github.com/adessoSE/softauthn") scm { url.set("https://github.com/adessoSE/softauthn") }