From 00139e0a9c584a0434d69a8ff1edbdbde02c1155 Mon Sep 17 00:00:00 2001 From: Chengjie Yin <89034346+chengjie8@users.noreply.github.com> Date: Fri, 13 Oct 2023 13:24:50 -0400 Subject: [PATCH] update tomcat embed core library version --- .../src/main/groovy/shared.java.vro-dep-constraints.gradle | 3 +++ svc-lighthouse-api/build.gradle | 2 ++ 2 files changed, 5 insertions(+) diff --git a/gradle-plugins/src/main/groovy/shared.java.vro-dep-constraints.gradle b/gradle-plugins/src/main/groovy/shared.java.vro-dep-constraints.gradle index 8a2a52110f..8f1f1d5d22 100644 --- a/gradle-plugins/src/main/groovy/shared.java.vro-dep-constraints.gradle +++ b/gradle-plugins/src/main/groovy/shared.java.vro-dep-constraints.gradle @@ -55,6 +55,9 @@ dependencies { implementation 'org.webjars:swagger-ui:4.1.3' implementation 'org.springframework.kafka:spring-kafka:2.9.11' + // for tomcat + implementation 'org.apache.tomcat.embed:tomcat-embed-core:9.0.80' + // These are used indirectly but we need to specify versions, otherwise build error annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor:${spring_boot_version}" annotationProcessor "org.mapstruct:mapstruct-processor:${mapstruct_version}" diff --git a/svc-lighthouse-api/build.gradle b/svc-lighthouse-api/build.gradle index 407377fe1f..53f28ca595 100644 --- a/svc-lighthouse-api/build.gradle +++ b/svc-lighthouse-api/build.gradle @@ -25,6 +25,8 @@ dependencies { implementation "io.jsonwebtoken:jjwt-impl:${jjwt_version}" implementation "io.jsonwebtoken:jjwt-jackson:${jjwt_version}" + implementation 'org.apache.tomcat.embed:tomcat-embed-core:10.1.13' + testImplementation "org.apache.camel.springboot:camel-rabbitmq-starter:${camel_version}" }