Skip to content

Commit d78d35e

Browse files
Copilotrashidi
andauthored
Remove self-defined versions for dependencies managed by Spring Boot (#348)
- Remove explicit version from httpclient5 in test-rest-assured (managed by Spring Boot at 5.5.2) - Remove explicit version from ehcache in data-jpa-hibernate-cache (managed by Spring Boot at 3.11.1) Agent-Logs-Url: https://github.com/rashidi/spring-boot-tutorials/sessions/b26e3fca-6c72-4beb-b7d3-d56fcfac4599 Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: rashidi <380073+rashidi@users.noreply.github.com>
1 parent ca0e3cd commit d78d35e

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

data-jpa-hibernate-cache/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,11 @@ repositories {
1818
}
1919

2020
dependencies {
21-
implementation("org.ehcache:ehcache:3.10.9:jakarta")
21+
implementation("org.ehcache:ehcache") {
22+
artifact {
23+
classifier = "jakarta"
24+
}
25+
}
2226
implementation("org.hibernate.orm:hibernate-jcache")
2327
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
2428
runtimeOnly("org.postgresql:postgresql")

test-rest-assured/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies {
2525
testImplementation("org.testcontainers:testcontainers-junit-jupiter")
2626
testImplementation("org.testcontainers:testcontainers-mongodb")
2727
testImplementation("io.rest-assured:rest-assured:6.0.0")
28-
testImplementation("org.apache.httpcomponents.client5:httpclient5:5.6.1")
28+
testImplementation("org.apache.httpcomponents.client5:httpclient5")
2929
}
3030

3131
tasks.named<Test>("test") {

0 commit comments

Comments
 (0)