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
TheBrokenRail e80e229efb
Some checks failed
ScriptCraft/pipeline/head There was a failure building this commit
Update Docs and Gradle
2020-06-01 17:32:20 -04:00

30 lines
456 B
Plaintext

repositories {
gradlePluginPortal()
jcenter()
}
plugins {
`kotlin-dsl`
`maven-publish`
}
group = "com.thebrokenrail.scriptcraft"
version = "1.0.0"
gradlePlugin {
plugins {
register("scriptcraft-plugin") {
id = "${group}.${project.name}"
implementationClass = "ScriptCraftPlugin"
}
}
}
publishing {
repositories {
maven {
url = uri("/data/maven")
}
}
}