Skip to content

Commit dfd96dd

Browse files
committed
Preparing for 3.1.0 release
1 parent 0b71454 commit dfd96dd

3 files changed

Lines changed: 24 additions & 10 deletions

File tree

RSTAUI/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ assert JavaVersion.current().isJava8Compatible()
99
archivesBaseName = 'rstaui'
1010

1111
dependencies {
12-
api 'com.fifesoft:rsyntaxtextarea:3.0.9-SNAPSHOT'
13-
api 'com.fifesoft:autocomplete:3.0.5'
14-
testImplementation 'junit:junit:4.12'
12+
api 'com.fifesoft:rsyntaxtextarea:3.1.0'
13+
api 'com.fifesoft:autocomplete:3.1.0'
14+
testImplementation 'junit:junit:4.13'
1515
}
1616

1717
ext.isReleaseVersion = !project.version.endsWith('SNAPSHOT')

build.gradle

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'com.github.spotbugs' version '2.0.1'
2+
id 'com.github.spotbugs' version '4.0.1'
33
}
44

55
group 'com.fifesoft'
@@ -16,7 +16,7 @@ allprojects {
1616
}
1717

1818
wrapper {
19-
gradleVersion = '6.1.1'
19+
gradleVersion = '6.2.2'
2020
}
2121
}
2222

@@ -27,13 +27,27 @@ subprojects {
2727
apply plugin: 'com.github.spotbugs'
2828

2929
checkstyle {
30-
toolVersion = '8.29'
30+
toolVersion = '8.30'
3131
}
3232

33-
tasks.withType(com.github.spotbugs.SpotBugsTask) {
33+
spotbugsMain {
3434
reports {
35-
xml.enabled = false
36-
html.enabled = true
35+
html {
36+
enabled = true
37+
}
38+
xml {
39+
enabled = false
40+
}
41+
}
42+
}
43+
spotbugsTest {
44+
reports {
45+
html {
46+
enabled = true
47+
}
48+
xml {
49+
enabled = false
50+
}
3751
}
3852
}
3953

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Note that Maven- and signing-related properties are in <maven-home>/gradle.properties
22
javaVersion=1.8
3-
version=3.0.7-SNAPSHOT
3+
version=3.1.0

0 commit comments

Comments
 (0)