Skip to content

Commit eea9014

Browse files
committed
chore: bump jetty to 12.1.8, testcontainers to 2.0.4 and force latest jackson for owasp plugin
1 parent a7c470a commit eea9014

1 file changed

Lines changed: 13 additions & 4 deletions

File tree

jgit-proxy-core/build.gradle

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
buildscript {
2+
configurations.all {
3+
resolutionStrategy {
4+
force 'com.fasterxml.jackson.core:jackson-core:2.21.1'
5+
}
6+
}
7+
}
8+
19
plugins {
210
id 'java-library'
311
}
@@ -27,7 +35,7 @@ repositories {
2735
ext {
2836
jgitVersion = '7.6.0.202603022253-r'
2937
apacheHttpVersion = '4.5.14'
30-
jettyVersion = '12.1.0'
38+
jettyVersion = '12.1.8'
3139
jakartaServletVersion = '6.1.0'
3240
slf4jVersion = '2.0.17'
3341
logbackVersion = '1.5.32'
@@ -36,6 +44,7 @@ ext {
3644
sqliteVersion = '3.51.3.0'
3745
postgresVersion = '42.7.10'
3846
mongoVersion = '5.6.4'
47+
testContainersVersion = '2.0.4'
3948
}
4049

4150
dependencies {
@@ -100,9 +109,9 @@ dependencies {
100109
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.14.3'
101110
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.14.3'
102111
testImplementation "org.mongodb:mongodb-driver-sync:${mongoVersion}"
103-
testImplementation 'org.testcontainers:testcontainers:1.20.4'
104-
testImplementation 'org.testcontainers:junit-jupiter:1.20.4'
105-
testImplementation 'org.testcontainers:mongodb:1.20.4'
112+
testImplementation "org.testcontainers:testcontainers:${testContainersVersion}"
113+
testImplementation "org.testcontainers:testcontainers-junit-jupiter:${testContainersVersion}"
114+
testImplementation "org.testcontainers:testcontainers-mongodb:${testContainersVersion}"
106115
testCompileOnly 'org.projectlombok:lombok:1.18.44'
107116
testAnnotationProcessor 'org.projectlombok:lombok:1.18.44'
108117
}

0 commit comments

Comments
 (0)