From e49f8b7a10dda6ec64aadab3fd933c9768312bb5 Mon Sep 17 00:00:00 2001 From: Atri Date: Fri, 3 Oct 2025 19:46:30 -0400 Subject: [PATCH] fix: Add other missing fields --- build.gradle.kts | 4 ++++ gradle.properties | 1 + 2 files changed, 5 insertions(+) diff --git a/build.gradle.kts b/build.gradle.kts index 33b5866..555a1d3 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -54,8 +54,11 @@ mavenPublishing { pom { val projectWebsite: String by project + val projectDescription: String by project name = rootProject.name + description = projectDescription + inceptionYear = "2025" url = projectWebsite licenses { @@ -65,6 +68,7 @@ mavenPublishing { license { name = license url = licenseLink + distribution = licenseLink } } diff --git a/gradle.properties b/gradle.properties index 265ba6b..b5ae0be 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,6 @@ kotlin.code.style=official projectWebsite=https://github.com/AtriusX/Compositor +projectDescription=Orchestrate Gradle composite builds with minimal effort license=MIT License licenseLink=https://github.com/AtriusX/Compositor/blob/main/LICENSE namespace=io.github.atriusx