Skip to content

Commit

Permalink
Preparing for 3.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbylight committed Mar 15, 2020
1 parent 0b71454 commit dfd96dd
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
6 changes: 3 additions & 3 deletions RSTAUI/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
26 changes: 20 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'com.github.spotbugs' version '2.0.1'
id 'com.github.spotbugs' version '4.0.1'
}

group 'com.fifesoft'
Expand All @@ -16,7 +16,7 @@ allprojects {
}

wrapper {
gradleVersion = '6.1.1'
gradleVersion = '6.2.2'
}
}

Expand All @@ -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
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Note that Maven- and signing-related properties are in <maven-home>/gradle.properties
javaVersion=1.8
version=3.0.7-SNAPSHOT
version=3.1.0

0 comments on commit dfd96dd

Please sign in to comment.