From a451e4cf69d6c23d1d7733203454e7f6c46724d6 Mon Sep 17 00:00:00 2001 From: David Wursteisen Date: Thu, 6 May 2021 17:04:57 +0200 Subject: [PATCH] fix central deployement --- build.gradle.kts | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 919d0fe..2ad554c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,17 +4,21 @@ plugins { id("com.github.minigdx.gradle.plugin.developer.mpp") version "1.0.0" apply false } -minigdxDeveloper { - this.name.set("minigdx-gltf-parser") - this.description.set("Parser and converter of gltf files into minigdx protobuf/json model.") - this.projectUrl.set("https://github.com/minigdx/minigdx-glft-parser") - this.licence { - name.set("MIT Licence") - url.set("https://github.com/minigdx/minigdx-glft-parser/blob/master/LICENSE") - } - developer { - name.set("David Wursteisen") - email.set("david.wursteisen+minigdx@gmail.com") - url.set("https://github.com/dwursteisen") +allprojects { + apply { plugin("com.github.minigdx.gradle.plugin.developer") } + + minigdxDeveloper { + this.name.set("minigdx-gltf-parser") + this.description.set("Parser and converter of gltf files into minigdx protobuf/json model.") + this.projectUrl.set("https://github.com/minigdx/minigdx-glft-parser") + this.licence { + name.set("MIT Licence") + url.set("https://github.com/minigdx/minigdx-glft-parser/blob/master/LICENSE") + } + developer { + name.set("David Wursteisen") + email.set("david.wursteisen+minigdx@gmail.com") + url.set("https://github.com/dwursteisen") + } } }