upload something

This commit is contained in:
2025-11-23 02:03:41 +08:00
parent 3ea1d5b360
commit 934e511f25
709 changed files with 52244 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
plugins {
java
idea
id("firmament.common")
}
dependencies {
implementation("net.fabricmc:stitch:0.6.2")
}
val compilerModules = listOf("util", "comp", "tree", "api", "code")
.map { "jdk.compiler/com.sun.tools.javac.$it" }
tasks.withType(JavaCompile::class) {
val module = "ALL-UNNAMED"
options.compilerArgs.addAll(
compilerModules.map { "--add-exports=$it=$module" }
)
}