File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
core/src/main/java/com/arangodb/internal/serde Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ jobs:
171171 fail-fast : false
172172 matrix :
173173 jackson-version :
174- - 2.17.0
174+ - 2.17.1
175175 - 2.16.2
176176 - 2.15.4
177177 - 2.14.3
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ static void checkSupportedJacksonVersion() {
4949 ).forEach (version -> {
5050 int major = version .getMajorVersion ();
5151 int minor = version .getMinorVersion ();
52- if (major != 2 || minor < 10 || minor > 16 ) {
52+ if (major != 2 || minor < 10 || minor > 17 ) {
5353 LOGGER .warn ("Unsupported Jackson version: {}" , version );
5454 }
5555 });
Original file line number Diff line number Diff line change 3838 <maven .deploy.skip>true</maven .deploy.skip>
3939 <sonar .organization>arangodb-1</sonar .organization>
4040 <sonar .host.url>https://sonarcloud.io</sonar .host.url>
41- <adb .jackson.version>2.17.0 </adb .jackson.version>
41+ <adb .jackson.version>2.17.1 </adb .jackson.version>
4242 <graalvm .version>23.1.1</graalvm .version>
4343 <moduleName />
4444 <SslTest />
You can’t perform that action at this time.
0 commit comments