Files
spring-boot-data-geode/spring-geode-project/apache-geode-jetty11/apache-geode-jetty11.gradle
John Blum d368cc8929 Add apache-geode-jetty11 module to integrate Apache Geode 1.14 with Eclipse Jetty 11.
Apache Geode 1.14 is based on Eclipse Jetty 9.  Spring Boot 3 declares and manages Eclipse Jetty 11 to align with the Jakarta EE 9 specification as a baseline.

Resolves #116.
2022-04-14 17:00:23 -07:00

22 lines
683 B
Groovy

apply plugin: 'io.spring.convention.spring-module'
description = "Apache Geode Integation with Eclipse Jetty declared and managed by Spring Boot"
dependencies {
api project(':apache-geode-extensions')
api("org.springframework.boot:spring-boot-starter-jetty") {
exclude group: "org.eclipse.jetty.websocket", module: "websocket-jakarta-server"
exclude group: "org.eclipse.jetty.websocket", module: "websocket-jetty-server"
}
implementation "org.apache.commons:commons-lang3"
implementation "org.apache.tomcat:jakartaee-migration:1.0.0"
implementation "org.eclipse.jetty:jetty-server"
implementation "org.slf4j:slf4j-api"
runtimeOnly "org.eclipse.jetty:apache-jsp"
}