Skip to content
This repository was archived by the owner on May 19, 2022. It is now read-only.

Commit 95cbce4

Browse files
author
jruaux
committed
upgraded spring boot starter
1 parent a06e8ac commit 95cbce4

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

build.gradle

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
plugins {
2-
id 'org.springframework.boot' version '2.2.4.RELEASE'
2+
id 'org.springframework.boot' version '2.2.5.RELEASE'
33
id 'io.spring.dependency-management' version '1.0.9.RELEASE'
44
id 'java'
55
id 'java-library'
66
id 'maven-publish'
77
id 'com.jfrog.bintray' version '1.8.4'
8-
id 'com.github.ben-manes.versions' version '0.27.0'
8+
id 'com.github.ben-manes.versions' version '0.28.0'
99
id 'net.researchgate.release' version '2.8.1'
10-
id 'com.github.breadmoirai.github-release' version '2.2.10'
10+
id 'com.github.breadmoirai.github-release' version '2.2.12'
1111
}
1212

1313
repositories {
@@ -25,7 +25,7 @@ jar {
2525

2626
dependencies {
2727
implementation 'org.springframework.boot:spring-boot-starter'
28-
api 'com.redislabs:lettusearch:1.12.8'
28+
api 'com.redislabs:lettusearch:1.13.0'
2929
api 'org.apache.commons:commons-pool2'
3030
compileOnly 'org.projectlombok:lombok'
3131
annotationProcessor 'org.projectlombok:lombok'
@@ -113,7 +113,8 @@ publishing {
113113

114114
group = 'com.redislabs'
115115
description = 'Spring RediSearch'
116-
sourceCompatibility = '1.8'
116+
sourceCompatibility = JavaVersion.VERSION_1_8
117+
targetCompatibility = JavaVersion.VERSION_1_8
117118

118119
task printVersion {
119120
doLast {
@@ -122,7 +123,7 @@ task printVersion {
122123
}
123124

124125
githubRelease {
125-
token = project.hasProperty('githubToken') ? project.property('githubToken') : System.getenv('GITHUB_TOKEN')
126+
token = project.hasProperty('githubToken') ? project.property('githubToken') : ''
126127
owner "RediSearch"
127128
repo "spring-redisearch"
128129
}

0 commit comments

Comments
 (0)