TheBrokenRail
9f68375dc6
All checks were successful
ScriptCraft/pipeline/head This commit looks good
20 lines
354 B
Plaintext
20 lines
354 B
Plaintext
repositories {
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("jni-plugin") {
|
|
id = "jni"
|
|
implementationClass = "JNIPlugin"
|
|
}
|
|
register("typescript-plugin") {
|
|
id = "typescript"
|
|
implementationClass = "TypeScriptPlugin"
|
|
}
|
|
}
|
|
} |