Updates the Gradle wrapper to 6.8.3, and changes three parts to the buildscript:
Changes from the source and target compatibility options (sourceCompatibility and targetCompatibility respectively) to the java/JVM toolchains feature introduced in Gradle 6.8.x.
Changes from using the deprecated compile and testCompile configurations to the implementation and testImplementation configurations, respectively.
Adds an explicit dependency on the JSR305 artifact from FindBugs (com.google.code.findbugs:jsr305:3.0.2). (cpw's modlauncher)[https://github.com/cpw/modlauncher] depends on this artifact already, but (according to the Maven POM) it is defined under the runtime scope, which leads to compile errors in IntelliJ IDEA and Gradle because of the missing dependency during compilation.
Updates the Gradle wrapper to 6.8.3, and changes three parts to the buildscript:
sourceCompatibility
andtargetCompatibility
respectively) to the java/JVM toolchains feature introduced in Gradle 6.8.x.compile
andtestCompile
configurations to theimplementation
andtestImplementation
configurations, respectively.com.google.code.findbugs:jsr305:3.0.2
). (cpw's modlauncher)[https://github.com/cpw/modlauncher] depends on this artifact already, but (according to the Maven POM) it is defined under theruntime
scope, which leads to compile errors in IntelliJ IDEA and Gradle because of the missing dependency during compilation.