feat: add godzilla filter generate

This commit is contained in:
ReaJason
2024-11-24 04:48:15 +08:00
parent 033bc2b9a5
commit b31db5c1ac
27 changed files with 1438 additions and 10 deletions
+18
View File
@@ -0,0 +1,18 @@
allprojects {
apply(plugin: 'java')
repositories {
mavenCentral()
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.11.3')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
}