mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-04 00:14:08 +01:00
85f704e537
Co-authored-by: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
63 lines
2.0 KiB
Plaintext
63 lines
2.0 KiB
Plaintext
import io.papermc.paperweight.PaperweightSourceGeneratorHelper
|
|
import io.papermc.paperweight.extension.PaperweightSourceGeneratorExt
|
|
|
|
plugins {
|
|
java
|
|
}
|
|
|
|
plugins.apply(PaperweightSourceGeneratorHelper::class)
|
|
|
|
extensions.configure(PaperweightSourceGeneratorExt::class) {
|
|
atFile.set(file("wideners.at"))
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal() // todo publish typewriter somewhere
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.squareup:javapoet:1.13.0")
|
|
implementation(project(":paper-api"))
|
|
implementation("io.github.classgraph:classgraph:4.8.47")
|
|
implementation("org.jetbrains:annotations:24.1.0")
|
|
implementation("io.papermc.typewriter:typewriter:1.0-SNAPSHOT") {
|
|
isTransitive = false // paper-api already have everything
|
|
}
|
|
testImplementation("org.junit.jupiter:junit-jupiter:5.10.2")
|
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
|
|
}
|
|
|
|
val generatedApiPath = file("generatedApi")
|
|
val generatedServerPath = file("generatedServer")
|
|
|
|
val generate by tasks.registering(JavaExec::class) {
|
|
dependsOn(tasks.check)
|
|
mainClass.set("io.papermc.generator.Main")
|
|
classpath(sourceSets.main.map { it.runtimeClasspath })
|
|
args(generatedApiPath.toString(),
|
|
project(":paper-api").sourceSets["main"].java.srcDirs.first().toString(),
|
|
generatedServerPath.toString(),
|
|
project(":paper-server").sourceSets["main"].java.srcDirs.first().toString())
|
|
}
|
|
|
|
generate.configure {
|
|
delete(generatedApiPath, generatedServerPath)
|
|
// the module depends on paper-api but generate into the project which cause conflict
|
|
// ideally this module would only depend on vanilla source in the long
|
|
// run
|
|
}
|
|
|
|
tasks.register<JavaExec>("scanOldGeneratedSourceCode") {
|
|
mainClass.set("io.papermc.generator.rewriter.OldGeneratedCodeTest")
|
|
classpath(sourceSets.test.map { it.runtimeClasspath })
|
|
args(generatedApiPath.toString(),
|
|
generatedServerPath.toString())
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
group = "io.papermc.paper"
|
|
version = "1.0-SNAPSHOT"
|