From f4d66c05fed10a800efa84963645a69d312a595d Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2026 13:23:38 +0000 Subject: [PATCH] Upgrade rest-assured 4.5.1 -> 5.5.2 --- .agents/skills/java-engineering-excellence/SKILL.md | 2 +- build.gradle | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.agents/skills/java-engineering-excellence/SKILL.md b/.agents/skills/java-engineering-excellence/SKILL.md index 677cfe0bf..f321b66bd 100644 --- a/.agents/skills/java-engineering-excellence/SKILL.md +++ b/.agents/skills/java-engineering-excellence/SKILL.md @@ -85,7 +85,7 @@ ts-java-spring-boot-realworld/ | `io.jsonwebtoken:jjwt-api` | 0.11.2 | 0.12.x | | `joda-time:joda-time` | 2.10.13 | remove → `java.time` | | `org.xerial:sqlite-jdbc` | 3.36.0.3 | 3.45.x+ | -| `io.rest-assured:spring-mock-mvc` (test) | 4.5.1 | 5.4.x | +| `io.rest-assured:spring-mock-mvc` (test) | 5.5.2 (`restAssuredVersion`) | 5.5.x (already current) | | `com.diffplug.spotless` | 6.2.1 | 6.25.x | | `org.flywaydb:flyway-core` | (managed) | 10.x (Boot 3.5 managed) | | Selenium (test) | 4.15.0 | 4.20.x | diff --git a/build.gradle b/build.gradle index 03c56f755..f5bccc045 100644 --- a/build.gradle +++ b/build.gradle @@ -8,6 +8,7 @@ plugins { } version = '0.0.1-SNAPSHOT' +ext['restAssuredVersion'] = '5.5.2' sourceCompatibility = '11' targetCompatibility = '11' @@ -72,10 +73,10 @@ dependencies { compileOnly 'org.projectlombok:lombok' annotationProcessor 'org.projectlombok:lombok' - testImplementation 'io.rest-assured:rest-assured:4.5.1' - testImplementation 'io.rest-assured:json-path:4.5.1' - testImplementation 'io.rest-assured:xml-path:4.5.1' - testImplementation 'io.rest-assured:spring-mock-mvc:4.5.1' + testImplementation "io.rest-assured:rest-assured:${restAssuredVersion}" + testImplementation "io.rest-assured:json-path:${restAssuredVersion}" + testImplementation "io.rest-assured:xml-path:${restAssuredVersion}" + testImplementation "io.rest-assured:spring-mock-mvc:${restAssuredVersion}" testImplementation 'org.springframework.security:spring-security-test' testImplementation 'org.springframework.boot:spring-boot-starter-test' testImplementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter-test:2.2.2'