2024-04-26 03:40:50 +02:00
|
|
|
import io.papermc.paperweight.PaperweightSourceGeneratorHelper
|
|
|
|
import io.papermc.paperweight.extension.PaperweightSourceGeneratorExt
|
2023-11-23 05:56:28 +01:00
|
|
|
|
|
|
|
plugins {
|
|
|
|
java
|
|
|
|
}
|
|
|
|
|
2024-04-26 03:40:50 +02:00
|
|
|
plugins.apply(PaperweightSourceGeneratorHelper::class)
|
2023-11-23 05:56:28 +01:00
|
|
|
|
2024-04-26 03:40:50 +02:00
|
|
|
extensions.configure(PaperweightSourceGeneratorExt::class) {
|
|
|
|
atFile.set(projectDir.toPath().resolve("wideners.at").toFile())
|
2023-11-23 05:56:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation("com.squareup:javapoet:1.13.0")
|
|
|
|
implementation(project(":paper-api"))
|
2024-01-15 20:36:10 +01:00
|
|
|
implementation("io.github.classgraph:classgraph:4.8.47")
|
2024-04-26 03:40:50 +02:00
|
|
|
implementation("org.jetbrains:annotations:24.0.1")
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register<JavaExec>("generate") {
|
|
|
|
mainClass.set("io.papermc.generator.Main")
|
|
|
|
classpath(sourceSets.main.map { it.runtimeClasspath })
|
|
|
|
args(projectDir.toPath().resolve("generated").toString())
|
2023-11-23 05:56:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
group = "io.papermc.paper"
|
|
|
|
version = "1.0-SNAPSHOT"
|