From fbde6b3387a254ea7d879aef98dbf38c450ad1b3 Mon Sep 17 00:00:00 2001 From: chrisly42 Date: Fri, 2 Oct 2020 18:52:50 +0200 Subject: [PATCH] Upgraded gradle to 6.6.1. Upgraded kotlin to 1.4.10. Upgraded assertj to 3.17.2. Upgraded junit-jupiter to 5.7.0. Other minor upgrades. --- build.gradle | 32 +++++++++++++++--------- gradle/wrapper/gradle-wrapper.properties | 2 +- 2 files changed, 21 insertions(+), 13 deletions(-) diff --git a/build.gradle b/build.gradle index 115d002..8f0aaf1 100644 --- a/build.gradle +++ b/build.gradle @@ -1,13 +1,13 @@ plugins { id 'java' - id 'org.jetbrains.intellij' version '0.4.21' - id 'org.jetbrains.kotlin.jvm' version '1.4.0-rc' + id 'org.jetbrains.intellij' version '0.4.26' + id 'org.jetbrains.kotlin.jvm' version '1.4.10' id 'jacoco' - id 'com.github.kt3k.coveralls' version '2.10.1' + id 'com.github.kt3k.coveralls' version '2.10.2' } group 'de.platon42' -version '1.10' +version '1.11' repositories { mavenCentral() @@ -20,22 +20,28 @@ repositories { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8" - testImplementation "org.assertj:assertj-core:3.16.1" + testImplementation "org.assertj:assertj-core:3.17.2" testImplementation "org.assertj:assertj-guava:3.4.0" - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2' - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2' + testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0' + testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.0' testImplementation "org.jetbrains.kotlin:kotlin-test" // testImplementation "org.jetbrains.kotlin:kotlin-test-junit" } compileKotlin { kotlinOptions.jvmTarget = "1.8" + sourceCompatibility = "1.8" + targetCompatibility = "1.8" } + compileTestKotlin { kotlinOptions.jvmTarget = "1.8" + sourceCompatibility = "1.8" + targetCompatibility = "1.8" } + intellij { - version '2020.2' + version '2020.2.2' // LATEST-EAP-SNAPSHOT // pluginName 'Concise AssertJ Optimizing Nitpicker (Cajon)' updateSinceUntilBuild false plugins = ['java'] @@ -43,10 +49,12 @@ intellij { patchPluginXml { changeNotes """ -

V1.10 (31-Jul-20) Friday the 31st Edition

+

V1.11 (03-Oct-20) Day of German Unity Edition

Full changelog available at Github project site.

""" @@ -60,7 +68,7 @@ test { } jacoco { - toolVersion = '0.8.5' + toolVersion = '0.8.6' } jacocoTestReport { diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index b5cf9a0..381f2b3 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.5.1-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-all.zip