From 782e6fede2606057743d93fdc1cca898efcc9168 Mon Sep 17 00:00:00 2001 From: David Wursteisen Date: Sat, 13 Mar 2021 14:05:30 +0100 Subject: [PATCH] Add project description for sonatype repository --- build.gradle.kts | 53 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 52 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2f09ac4..ecb5534 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("com.github.minigdx.gradle.plugin.developer.mpp") version "1.0.0-alpha1" + id("com.github.minigdx.gradle.plugin.developer.mpp") version "1.0.0-alpha2" } repositories { @@ -11,3 +11,54 @@ dependencies { this.jvmTestImplementation("com.badlogicgames.gdx:gdx-platform:1.9.9:natives-desktop") this.jvmTestImplementation("org.assertj:assertj-core:3.11.1") } + +minigdxDeveloper { + this.name.set("kotlin-math") + this.description.set("Set of Kotlin APIs to make graphics math easier to write.") + this.projectUrl.set("https://github.com/minigdx/kotlin-math") + this.licence { + name.set("Apache License 2.0") + url.set("https://github.com/minigdx/kotlin-math/blob/master/LICENSE") + } + developer { + name.set("David Wursteisen") + email.set("david.wursteisen+minigdx@gmail.com") + url.set("https://github.com/dwursteisen") + } + + developer { + name.set("Romain Guy") + email.set("romainguy@curious-creature.com") + url.set("https://github.com/romainguy") + } + + developer { + name.set("Denis Konoplev") + email.set("dekonoplyov@gmail.com") + } + + developer { + name.set("G0BL1N") + email.set("piraka282@gmail.com") + } + + developer { + name.set("shiraji") + email.set("isogai.shiraji@gmail.com") + } + + developer { + name.set("Kyle Nordbo") + email.set("knordbo@atlassian.com") + } + + developer { + name.set("Ryan Harter") + email.set("ryanjharter@gmail.com") + } + + developer { + name.set("Ravindra Kumar") + email.set("ravindrakumar8088@gmail.com") + } +}