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 9, 2020
1 parent 12c4a6a commit 66eac70
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 11 deletions.
2 changes: 1 addition & 1 deletion AutoComplete/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ assert current().isJava8Compatible()
archivesBaseName = 'autocomplete'

dependencies {
api 'com.fifesoft:rsyntaxtextarea:3.0.8'
api 'com.fifesoft:rsyntaxtextarea:3.1.0'
}

ext.isReleaseVersion = !project.version.endsWith('SNAPSHOT')
Expand Down
30 changes: 22 additions & 8 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:4.3.1'
classpath 'biz.aQute.bnd:biz.aQute.bnd.gradle:5.0.0'
}
}

plugins {
id 'com.github.spotbugs' version '2.0.1'
id 'com.github.spotbugs' version '4.0.1'
}

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

wrapper {
gradleVersion = '6.1'
gradleVersion = '6.2.2'
}
}

Expand All @@ -34,19 +34,33 @@ subprojects {
apply plugin: 'com.github.spotbugs'

checkstyle {
toolVersion = '8.28'
toolVersion = '8.30'
configFile = '../config/checkstyle/checkstyle.xml' as File // Relative to subprojects
}

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
}
}
}

dependencies {
testImplementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.13'
}

compileJava {
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 <gradle-user-home>/gradle.properties
javaVersion=1.8
version=3.0.6-SNAPSHOT
version=3.1.0
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-6.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
3 changes: 3 additions & 0 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%

@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi

@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"

Expand Down

0 comments on commit 66eac70

Please sign in to comment.