remove plugin.yml
This commit is contained in:
parent
2dc05d7536
commit
875e8f3dbe
|
|
@ -3,6 +3,7 @@ import java.io.ByteArrayOutputStream
|
||||||
plugins {
|
plugins {
|
||||||
`java-library`
|
`java-library`
|
||||||
`maven-publish`
|
`maven-publish`
|
||||||
|
id("net.minecrell.plugin-yml.bukkit") version "0.6.0"
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
@ -11,7 +12,7 @@ dependencies {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
group = "com.alttd"
|
group = "com.alttd.altitudeapi"
|
||||||
version = System.getenv("BUILD_NUMBER") ?: gitCommit()
|
version = System.getenv("BUILD_NUMBER") ?: gitCommit()
|
||||||
description = "AltitudeAPI"
|
description = "AltitudeAPI"
|
||||||
|
|
||||||
|
|
@ -65,4 +66,13 @@ fun gitCommit(): String {
|
||||||
standardOutput = os
|
standardOutput = os
|
||||||
}
|
}
|
||||||
return String(os.toByteArray()).trim()
|
return String(os.toByteArray()).trim()
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bukkit {
|
||||||
|
name = rootProject.name
|
||||||
|
main = "$group.${rootProject.name}"
|
||||||
|
version = "${rootProject.version}"
|
||||||
|
apiVersion = "1.20"
|
||||||
|
authors = listOf("Michael Ziluck", "destro174")
|
||||||
}
|
}
|
||||||
|
|
@ -1,4 +0,0 @@
|
||||||
main: com.alttd.altitudeapi.AltitudeAPI
|
|
||||||
name: AltitudeAPI
|
|
||||||
version: ${project.version}
|
|
||||||
author: Michael Ziluck
|
|
||||||
Loading…
Reference in New Issue
Block a user