mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-03 13:58:28 +08:00
18 lines
299 B
Plaintext
18 lines
299 B
Plaintext
plugins {
|
|
kotlin("jvm") version "1.4.30"
|
|
`java-gradle-plugin`
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("pwPlugins") {
|
|
id = "world.phantasmal.gradle.js"
|
|
implementationClass = "world.phantasmal.gradle.PwJsPlugin"
|
|
}
|
|
}
|
|
}
|