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