From f8843a8edeaf04bc5a1a42d276aa490e77004d4b Mon Sep 17 00:00:00 2001 From: Dave Nice Date: Tue, 11 Jun 2024 19:36:38 +0100 Subject: [PATCH] Add description and license information Signed-off-by: Dave Nice --- build.gradle.kts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 133a6db..baf419c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -75,6 +75,22 @@ publishing { } } } + publications { + mavenJava(MavenPublication) { + from(components.java) + + pom { + name = 'CICS Bundle Gradle' + description = 'A Gradle plugin to build CICS bundles, and deploy them into CICS TS' + licenses { + license { + name = 'EPL-2.0' + url = 'https://www.eclipse.org/legal/epl-2.0/' + } + } + } + } + } } repositories {