53
53
54
54
// server
55
55
javaxServletVersion = ' 4.0.1'
56
- twigVersion = ' 5.87.0.RELEASE '
56
+ pebbleVersion = ' 3.1.5 '
57
57
58
58
// database
59
59
lettuceVersion = ' 5.2.0.RELEASE'
@@ -63,22 +63,31 @@ ext {
63
63
64
64
// other dependencies
65
65
javaxValidationApiVersion = ' 2.0.1.Final'
66
+
67
+ guavaVersion = ' 30.1-jre'
66
68
67
69
}
68
70
69
71
70
72
subprojects {
71
73
group = ' com.github.sonus21'
72
- version = ' 2.6.0 -RELEASE'
74
+ version = ' 2.6.1 -RELEASE'
73
75
74
76
dependencies {
75
77
// https://mvnrepository.com/artifact/org.springframework/spring-messaging
76
78
compile group : ' org.springframework' , name : ' spring-messaging' , version : " ${ springVersion} "
77
79
// https://mvnrepository.com/artifact/org.springframework.data/spring-data-redis
78
80
compile group : ' org.springframework.data' , name : ' spring-data-redis' , version : " ${ springDataVersion} "
79
81
82
+ // https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
83
+ compile group : ' org.apache.commons' , name : ' commons-lang3' , version : " ${ lang3Version} "
84
+
85
+ // https://mvnrepository.com/artifact/com.google.guava/guava
86
+ compile group : ' com.google.guava' , name : ' guava' , version : " ${ guavaVersion} "
87
+
80
88
compileOnly " org.projectlombok:lombok:${ lombokVersion} "
81
89
annotationProcessor " org.projectlombok:lombok:${ lombokVersion} "
90
+
82
91
testCompile " org.projectlombok:lombok:${ lombokVersion} "
83
92
testAnnotationProcessor " org.projectlombok:lombok:${ lombokVersion} "
84
93
@@ -93,8 +102,6 @@ subprojects {
93
102
testCompile group : ' org.mockito' , name : ' mockito-junit-jupiter' , version : " ${ mockitoVersion} "
94
103
// https://mvnrepository.com/artifact/org.hamcrest/hamcrest
95
104
testCompile group : ' org.hamcrest' , name : ' hamcrest' , version : " ${ hamcrestVersion} "
96
- // https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
97
- testCompile group : ' org.apache.commons' , name : ' commons-lang3' , version : " ${ lang3Version} "
98
105
testCompile(" org.springframework.boot:spring-boot-test:${ springBootVersion} " )
99
106
testCompile group : ' org.junit-pioneer' , name : ' junit-pioneer' , version : ' 0.9.0'
100
107
0 commit comments