-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from dwursteisen/master
fix central deployement
- Loading branch information
Showing
1 changed file
with
16 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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("[email protected]") | ||
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("[email protected]") | ||
url.set("https://github.com/dwursteisen") | ||
} | ||
} | ||
} |