From f89c2edaef8cc20eade7dc417857cabb83782b40 Mon Sep 17 00:00:00 2001 From: Denis Loh Date: Wed, 3 Sep 2025 13:18:36 +0200 Subject: [PATCH 1/2] - Added inceptionYear based on LICENSE file and developer name tag for developers in POM to allow Gradle plugins like gradle-license-plugin or aboutLibraries to automatically fetch the correct Copyright information. --- buildSrc/src/main/kotlin/trixnity.publish.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buildSrc/src/main/kotlin/trixnity.publish.gradle.kts b/buildSrc/src/main/kotlin/trixnity.publish.gradle.kts index 77cbff51b..303079d84 100644 --- a/buildSrc/src/main/kotlin/trixnity.publish.gradle.kts +++ b/buildSrc/src/main/kotlin/trixnity.publish.gradle.kts @@ -35,6 +35,7 @@ publishing { name.set(project.name) description.set("Multiplatform Kotlin SDK for matrix-protocol") url.set("https://gitlab.com/trixnity/trixnity") + inceptionYear.set("2022") licenses { license { name.set("Apache License 2.0") @@ -44,6 +45,7 @@ publishing { developers { developer { id.set("benkuly") + name.set("benkuly") } } scm { -- GitLab From 6fbee543c546a969b337e31171d1cc851b2e912b Mon Sep 17 00:00:00 2001 From: Denis Loh Date: Wed, 3 Sep 2025 13:19:08 +0200 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e38f30c93..3bde24ad8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Added inceptionYear based on LICENSE file and developer name tag for developers in POM to allow Gradle plugins + like gradle-license-plugin or aboutLibraries to automatically fetch the correct Copyright information. + ### Changed - Delete read receipts on non-join -- GitLab