1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-11-02 06:32:59 +00:00

Add a couple of errorprone plugins

- Check that common code does not reference client-only classes.
 - Check that @ForgeOverride really overrides a method in Forge
   projects.
This commit is contained in:
Jonathan Coates
2022-11-10 00:03:09 +00:00
parent f04acdc199
commit 1d335f7290
15 changed files with 431 additions and 5 deletions

View File

@@ -16,6 +16,12 @@ dependencies {
implementation(libs.kotlin.stdlib)
implementation(libs.errorProne.api)
implementation(libs.nullAway)
testImplementation(libs.bundles.test)
testImplementation(libs.errorProne.testHelpers)
testImplementation(libs.forgeSpi)
testCompileOnly(project(":core-api"))
testRuntimeOnly(libs.bundles.testRuntime)
}
tasks.test {