From 48f979858a84ab624d4f93bb0d743d0201cb79d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20Kn=C3=B6ller?= Date: Fri, 7 Jun 2024 14:12:09 +0200 Subject: [PATCH 1/2] chore: update developers in build gradle --- build.gradle.kts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 3c16536..c71a6d0 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -139,9 +139,10 @@ publishing { } developers { developer { - id.set("gaebel") - name.set("Jan Gaebel") - email.set("gaebel@liftric.com") + appendNode("id", "Liftric") + appendNode("name", "Liftric Team and Contributors") + appendNode("organization", "Liftric") + appendNode("organizationUrl", "https://www.liftric.com") } } scm { From 3b796334db6a80f8907847ab2d2d9d0868554e60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20Kn=C3=B6ller?= Date: Fri, 7 Jun 2024 14:23:47 +0200 Subject: [PATCH 2/2] fix: build.gradle --- build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index c71a6d0..1141687 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -139,10 +139,10 @@ publishing { } developers { developer { - appendNode("id", "Liftric") - appendNode("name", "Liftric Team and Contributors") - appendNode("organization", "Liftric") - appendNode("organizationUrl", "https://www.liftric.com") + id.set("Liftric") + name.set("Liftric Team and Contributors") + organization.set("Liftric") + organizationUrl.set("https://www.liftric.com") } } scm {