TheBrokenRail
e80e229efb
Some checks failed
ScriptCraft/pipeline/head There was a failure building this commit
30 lines
456 B
Plaintext
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")
|
|
}
|
|
}
|
|
}
|