forked from romainguy/kotlin-math
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add project description for sonatype repository
- Loading branch information
1 parent
f69e377
commit 782e6fe
Showing
1 changed file
with
52 additions
and
1 deletion.
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 |
---|---|---|
@@ -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("[email protected]") | ||
url.set("https://github.com/dwursteisen") | ||
} | ||
|
||
developer { | ||
name.set("Romain Guy") | ||
email.set("[email protected]") | ||
url.set("https://github.com/romainguy") | ||
} | ||
|
||
developer { | ||
name.set("Denis Konoplev") | ||
email.set("[email protected]") | ||
} | ||
|
||
developer { | ||
name.set("G0BL1N") | ||
email.set("[email protected]") | ||
} | ||
|
||
developer { | ||
name.set("shiraji") | ||
email.set("[email protected]") | ||
} | ||
|
||
developer { | ||
name.set("Kyle Nordbo") | ||
email.set("[email protected]") | ||
} | ||
|
||
developer { | ||
name.set("Ryan Harter") | ||
email.set("[email protected]") | ||
} | ||
|
||
developer { | ||
name.set("Ravindra Kumar") | ||
email.set("[email protected]") | ||
} | ||
} |