File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ assert JavaVersion.current().isJava8Compatible()
99archivesBaseName = ' rstaui'
1010
1111dependencies {
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
1717ext. isReleaseVersion = ! project. version. endsWith(' SNAPSHOT' )
Original file line number Diff line number Diff line change 11plugins {
2- id ' com.github.spotbugs' version ' 2 .0.1'
2+ id ' com.github.spotbugs' version ' 4 .0.1'
33}
44
55group ' 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
Original file line number Diff line number Diff line change 11# Note that Maven- and signing-related properties are in <maven-home>/gradle.properties
22javaVersion =1.8
3- version =3.0.7-SNAPSHOT
3+ version =3.1.0
You can’t perform that action at this time.
0 commit comments