Skip to content

Commit

Permalink
deps: Upgraded spring boot plugin and jdbc drivers
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Sep 3, 2023
1 parent 986fc8a commit 2555d10
Show file tree
Hide file tree
Showing 60 changed files with 23 additions and 27 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ config {
inceptionYear = '2020'
vendor = 'Redis'
tags = ['redis', 'tool', 'import', 'export', 'replication']
bytecodeVersion = 8

links {
website = "https://github.com/redis-developer/${project.rootProject.name}"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
22 changes: 9 additions & 13 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,9 @@
# limitations under the License.
#
group = com.redis
sourceCompatibility = 1.8
targetCompatibility = 1.8
testSourceCompatibility = 11
testTargetCompatibility = 11
reproducibleBuild = true

bootPluginVersion = 2.7.13
bootPluginVersion = 2.7.15
gitPluginVersion = 3.0.0
kordampBuildVersion = 3.1.0
kordampPluginVersion = 0.51.0
Expand All @@ -31,7 +27,7 @@ awaitilityVersion = 4.2.0
awsVersion = 2.2.6.RELEASE
commonsIoVersion = 2.11.0
db2Version = 11.5.8.0
datafakerVersion = 1.9.0
datafakerVersion = 2.0.1
gcpVersion = 1.2.8.RELEASE
googleHttpVersion = 1.38.0
jacocoVersion = 0.8.10
Expand All @@ -40,17 +36,17 @@ jsr305Version = 3.0.2
latencyutilsVersion = 2.0.3
lettucemodVersion = 3.6.3
lettuceVersion = 6.2.6.RELEASE
mssqlVersion = 12.2.0.jre8
mssqlVersion = 12.4.1.jre11
oracleVersion = 19.3.0.0
picocliVersion = 4.7.4
picocliVersion = 4.7.5
plexusVersion = 4.0.0
progressbarVersion = 0.9.5
progressbarVersion = 0.10.0
springBatchRedisVersion = 3.6.6-SNAPSHOT
sqliteVersion = 3.42.0.0
sqliteVersion = 3.43.0.0
testcontainersRedisVersion = 1.6.4
testcontainersVersion = 1.18.3
testcontainersVersion = 1.19.0

org.gradle.daemon = false
org.gradle.caching = false
org.gradle.daemon = true
org.gradle.caching = true
systemProp.file.encoding = utf-8
org.gradle.jvmargs = -Dfile.encoding=UTF-8
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
3 changes: 2 additions & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit

# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
Expand Down
18 changes: 9 additions & 9 deletions jreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ project:
authors:
- Julien Ruaux
license: Apache-2.0
inceptionYear: 2020
inceptionYear: '2020'
stereotype: CLI
vendor: Redis
icons:
Expand All @@ -29,7 +29,7 @@ project:
height: 256
java:
groupId: com.redis
version: 17
version: '20'
multiProject: true
mainClass: com.redis.riot.cli.Main
tags:
Expand Down Expand Up @@ -59,7 +59,7 @@ release:
format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'
contentTemplate: 'src/jreleaser/changelog.tpl'
extraProperties:
categorizeScopes: true
categorizeScopes: 'true'
labelers:
- label: 'i18n'
title: 'regex:^(?:i18n(?:\(.*\))?!?):\s.*'
Expand Down Expand Up @@ -127,7 +127,7 @@ assemble:
riot-standalone:
active: ALWAYS
java:
version: 11
version: '20'
imageName: '{{distributionName}}-{{projectEffectiveVersion}}'
executable: riot
fileSets:
Expand Down Expand Up @@ -245,11 +245,11 @@ distributions:
- path: plugins/{{distributionName}}/build/distributions/{{distributionName}}-{{projectVersion}}.zip
transform: '{{distributionName}}/{{distributionName}}-{{projectEffectiveVersion}}.zip'
extraProperties:
skipSpec: true
skipSpec: 'true'
- path: plugins/{{distributionName}}/build/distributions/{{distributionName}}-{{projectVersion}}.tar
transform: '{{distributionName}}/{{distributionName}}-{{projectEffectiveVersion}}.tar'
extraProperties:
skipFlatpak: true
skipFlatpak: 'true'

riot-standalone:
appImage:
Expand All @@ -267,6 +267,6 @@ files:
artifacts:
- path: VERSION
extraProperties:
skipChecksum: true
skipSigning: true
skipSbom: true
skipChecksum: 'true'
skipSigning: 'true'
skipSbom: 'true'
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ apply plugin: 'org.kordamp.gradle.kordamp-parentbuild'
rootProject.name = 'riot'

projects {
directories = ['core', 'plugins', 'docs']
directories = ['core', 'connectors', 'plugins', 'docs']

plugins {
all {
Expand All @@ -50,7 +50,7 @@ projects {
id 'org.kordamp.gradle.guide'
id 'org.ajoberstar.git-publish'
}
dirs(['core', 'plugins']) {
dirs(['core', 'connectors', 'plugins']) {
id 'java-library'
id 'org.springframework.boot'
id 'io.spring.dependency-management'
Expand Down

0 comments on commit 2555d10

Please sign in to comment.