1
1
buildscript {
2
2
3
3
ext {
4
- set(" jacksonVersion" , " 2.13.4" )
5
- set(" springVersion" , " 5.3.23" )
6
- set(" springBotVersion" , " 2.7.4" )
7
- set(" jettyVersion" , " 9.4.49.v20220914" )
8
- set(" slf4jVersion" , " 2.0.3" )
4
+ set(" jacksonVersion" , " 2.16.1" )
5
+ // Versions 6.0.0 and above no longer support Java 1.8
6
+ set(" springVersion" , " 5.3.32" )
7
+ // Versions 3.0.0 and above no longer support Java 1.8
8
+ set(" springBootVersion" , " 2.7.18" )
9
+ set(" jettyVersion" , " 9.4.54.v20240208" )
10
+ set(" slf4jVersion" , " 2.0.12" )
9
11
}
10
12
11
13
repositories {
@@ -15,8 +17,8 @@ buildscript {
15
17
}
16
18
17
19
dependencies {
18
- classpath " io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.3 "
19
- classpath(" com.adarshr:gradle-test-logger-plugin:1.6 .0" )
20
+ classpath " io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.30.0 "
21
+ classpath(" com.adarshr:gradle-test-logger-plugin:3.2 .0" )
20
22
}
21
23
}
22
24
67
69
}
68
70
69
71
jacoco {
70
- toolVersion = " 0.8.5 "
72
+ toolVersion = " 0.8.11 "
71
73
}
72
74
73
75
jacocoTestReport {
@@ -114,23 +116,23 @@ dependencies {
114
116
springSupportImplementation " org.springframework:spring-web:${ springVersion} "
115
117
springSupportImplementation " org.springframework:spring-webmvc:${ springVersion} "
116
118
117
- implementation ' commons-codec:commons-codec:1.15 '
118
- implementation ' org.apache.httpcomponents:httpcore-nio:4.4.15 '
119
+ implementation ' commons-codec:commons-codec:1.16.1 '
120
+ implementation ' org.apache.httpcomponents:httpcore-nio:4.4.16 '
119
121
120
122
testImplementation ' junit:junit:4.13.2'
121
- testImplementation ' org.easymock:easymock:4.3 '
122
- testImplementation(" org.springframework.boot:spring-boot-starter-web:${ springBotVersion } " ) {
123
+ testImplementation ' org.easymock:easymock:5.2.0 '
124
+ testImplementation(" org.springframework.boot:spring-boot-starter-web:${ springBootVersion } " ) {
123
125
exclude module : ' logback-classic'
124
126
}
125
- testImplementation " org.springframework.boot:spring-boot-starter-test:${ springBotVersion } "
127
+ testImplementation " org.springframework.boot:spring-boot-starter-test:${ springBootVersion } "
126
128
testImplementation(" org.eclipse.jetty:jetty-server:${ jettyVersion} " ) {
127
129
exclude module : ' javax.servlet'
128
130
}
129
131
testImplementation(" org.eclipse.jetty:jetty-servlet:${ jettyVersion} " ) {
130
132
exclude module : ' org.eclipse.jetty.orbit'
131
133
}
132
- testRuntimeOnly ' org.apache.logging.log4j:log4j-slf4j-impl:2.19 .0'
133
- testRuntimeOnly ' org.apache.logging.log4j:log4j-core:2.19 .0'
134
+ testRuntimeOnly ' org.apache.logging.log4j:log4j-slf4j-impl:2.23 .0'
135
+ testRuntimeOnly ' org.apache.logging.log4j:log4j-core:2.23 .0'
134
136
135
137
}
136
138
0 commit comments