This repository has been archived on 2023-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
ScriptCraft/plugin/build.gradle.kts

30 lines
456 B
Plaintext
Raw Permalink Normal View History

2020-05-31 17:25:16 +00:00
repositories {
gradlePluginPortal()
jcenter()
}
plugins {
`kotlin-dsl`
`maven-publish`
}
2020-05-31 19:35:00 +00:00
group = "com.thebrokenrail.scriptcraft"
version = "1.0.0"
2020-05-31 17:25:16 +00:00
gradlePlugin {
plugins {
register("scriptcraft-plugin") {
2020-06-01 21:32:20 +00:00
id = "${group}.${project.name}"
2020-05-31 17:25:16 +00:00
implementationClass = "ScriptCraftPlugin"
}
}
}
publishing {
repositories {
maven {
url = uri("/data/maven")
}
}
}