Skip to content

Commit

Permalink
Preparing for 3.1.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbylight committed Dec 7, 2021
1 parent a3c07f7 commit 62c0018
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions RSyntaxTextArea/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ ext.isReleaseVersion = !project.version.endsWith('SNAPSHOT')

jacocoTestReport {
reports {
xml.enabled = true // codecov depends on xml format report
html.enabled = true
xml.required = true // codecov depends on xml format report
html.required = true
}
}

Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'biz.aQute.bnd:biz.aQute.bnd.gradle:5.3.0'
classpath 'biz.aQute.bnd:biz.aQute.bnd.gradle:6.1.0'
}
}

plugins {
id 'com.github.spotbugs' version '4.7.3'
id 'com.github.spotbugs' version '4.7.10'
}

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

wrapper {
gradleVersion = '7.2'
gradleVersion = '7.3.1'
}
}

Expand All @@ -39,7 +39,7 @@ subprojects {
}

checkstyle {
toolVersion = '9.0'
toolVersion = '9.2'
configDirectory = file("$rootProject.projectDir/config/checkstyle")
}

Expand Down
4 changes: 4 additions & 0 deletions config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,11 @@
<!--<module name="FinalParameters"/>-->
<!-- <module name="TodoComment"/> -->
<module name="UpperEll"/>
<!-- <module name="UnnecessaryParentheses"/>-->
<module name="UnnecessarySemicolonInEnumeration"/>
<module name="UnnecessarySemicolonInTryWithResources"/>
<module name="UnnecessarySemicolonAfterOuterTypeDeclaration"/>
<module name="UnnecessarySemicolonAfterTypeMemberDeclaration"/>

</module>

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

# Ugh, see https://github.com/gradle/gradle/issues/11308
systemProp.org.gradle.internal.publish.checksums.insecure=true
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 62c0018

Please sign in to comment.