✅ Add JUnit Rule to override locales during tests
[Sone.git] / build.gradle
index c2247d3..75716e2 100644 (file)
@@ -1,13 +1,13 @@
 import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
 
 plugins {
-    id 'org.jetbrains.kotlin.jvm' version '1.3.70'
-    id 'org.jetbrains.kotlin.plugin.noarg' version '1.3.70'
+    id 'org.jetbrains.kotlin.jvm' version '1.4.32'
+    id 'org.jetbrains.kotlin.plugin.noarg' version '1.4.32'
     id 'info.solidsoft.pitest' version '1.4.5'
 }
 
 group = 'net.pterodactylus'
-version = '81'
+version = '82'
 
 repositories {
      mavenCentral()
@@ -26,6 +26,7 @@ tasks.withType(JavaCompile) {
 tasks.withType(KotlinCompile) {
     kotlinOptions {
         jvmTarget = "1.8"
+        freeCompilerArgs += '-Xjvm-default=enable'
     }
 }
 
@@ -118,12 +119,6 @@ pitest {
     timeoutFactor = 3.0
 }
 
-apply plugin: 'findbugs'
-
-findbugs {
-    ignoreFailures = true
-}
-
 apply plugin: 'idea'
 
 task countLinesMain(type: Exec) {