We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fb4ff8 commit af31661Copy full SHA for af31661
1 file changed
api/build.gradle.kts
@@ -7,8 +7,28 @@ dependencies {
7
publishing {
8
publications {
9
create<MavenPublication>("mavenJava") {
10
+ groupId = "github.nighter"
11
+ artifactId = "smartspawner-api"
12
from(components["java"])
- artifactId = "api"
13
+
14
+ pom {
15
+ name.set("SmartSpawner API")
16
+ description.set("API for SmartSpawner plugin - allows other plugins to create and manage spawners")
17
+ url.set("https://github.com/NighterDevelopment/SmartSpawner")
18
+ licenses {
19
+ license {
20
+ name.set("MIT License")
21
+ url.set("https://opensource.org/licenses/MIT")
22
+ }
23
24
+ developers {
25
+ developer {
26
+ id.set("nighter")
27
+ name.set("Nighter")
28
+ email.set("notnighter@gmail.com")
29
30
31
32
}
33
34
0 commit comments