From dfd96dd5051b2a025c3b5dcb2cf6b39e7e4bda50 Mon Sep 17 00:00:00 2001 From: bobbylight Date: Sun, 15 Mar 2020 18:14:56 -0400 Subject: [PATCH] Preparing for 3.1.0 release --- RSTAUI/build.gradle | 6 +++--- build.gradle | 26 ++++++++++++++++++++------ gradle.properties | 2 +- 3 files changed, 24 insertions(+), 10 deletions(-) diff --git a/RSTAUI/build.gradle b/RSTAUI/build.gradle index 958aef4..3c41c91 100644 --- a/RSTAUI/build.gradle +++ b/RSTAUI/build.gradle @@ -9,9 +9,9 @@ assert JavaVersion.current().isJava8Compatible() archivesBaseName = 'rstaui' dependencies { - api 'com.fifesoft:rsyntaxtextarea:3.0.9-SNAPSHOT' - api 'com.fifesoft:autocomplete:3.0.5' - testImplementation 'junit:junit:4.12' + api 'com.fifesoft:rsyntaxtextarea:3.1.0' + api 'com.fifesoft:autocomplete:3.1.0' + testImplementation 'junit:junit:4.13' } ext.isReleaseVersion = !project.version.endsWith('SNAPSHOT') diff --git a/build.gradle b/build.gradle index b786f0f..f8efcfa 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'com.github.spotbugs' version '2.0.1' + id 'com.github.spotbugs' version '4.0.1' } group 'com.fifesoft' @@ -16,7 +16,7 @@ allprojects { } wrapper { - gradleVersion = '6.1.1' + gradleVersion = '6.2.2' } } @@ -27,13 +27,27 @@ subprojects { apply plugin: 'com.github.spotbugs' checkstyle { - toolVersion = '8.29' + toolVersion = '8.30' } - tasks.withType(com.github.spotbugs.SpotBugsTask) { + spotbugsMain { reports { - xml.enabled = false - html.enabled = true + html { + enabled = true + } + xml { + enabled = false + } + } + } + spotbugsTest { + reports { + html { + enabled = true + } + xml { + enabled = false + } } } diff --git a/gradle.properties b/gradle.properties index 9d32de4..bda44f8 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ # Note that Maven- and signing-related properties are in /gradle.properties javaVersion=1.8 -version=3.0.7-SNAPSHOT +version=3.1.0