Skip to content

Commit d266c13

Browse files
author
Julien Ruaux
committed
deps: reverted to last known working dependencies
1 parent 1d7aa6c commit d266c13

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,13 @@ subprojects {
7373
test {
7474
maxHeapSize = "1024m"
7575
}
76+
bootJar {
77+
enabled = false
78+
}
79+
jar {
80+
enabled = true
81+
archiveClassifier = ''
82+
}
7683

7784
sourceCompatibility = 8
7885
targetCompatibility = 8

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
group=com.redis
22

3+
bootPluginVersion=2.6.7
4+
dependencyPluginVersion=1.0.11.RELEASE
35
dockerPluginVersion=0.32.0
46
kordampBuildVersion=2.6.0
57
kordampPluginVersion=0.47.0

settings.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ buildscript {
77
dependencies {
88
classpath "org.kordamp.gradle:kordamp-parentbuild:$kordampBuildVersion"
99
classpath "org.kordamp.gradle:java-project-gradle-plugin:$kordampPluginVersion"
10+
classpath "org.springframework.boot:spring-boot-gradle-plugin:$bootPluginVersion"
11+
classpath "io.spring.gradle:dependency-management-plugin:$dependencyPluginVersion"
1012
classpath "com.palantir.gradle.docker:gradle-docker:$dockerPluginVersion"
1113
}
1214
}
@@ -28,6 +30,8 @@ projects {
2830
dirs(['subprojects']) {
2931
id 'java-library'
3032
id 'java-library-distribution'
33+
id 'org.springframework.boot'
34+
id 'io.spring.dependency-management'
3135
}
3236
}
3337
}

0 commit comments

Comments
 (0)