66 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Groovy
		
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Groovy
		
	
	
	
| description = "Spring Web MVC"
 | |
| 
 | |
| apply plugin: "kotlin"
 | |
| 
 | |
| dependencies {
 | |
| 	api(project(":spring-aop"))
 | |
| 	api(project(":spring-beans"))
 | |
| 	api(project(":spring-context"))
 | |
| 	api(project(":spring-core"))
 | |
| 	api(project(":spring-expression"))
 | |
| 	api(project(":spring-web"))
 | |
| 	compileOnly("jakarta.servlet:jakarta.servlet-api")
 | |
| 	compileOnly("com.google.code.findbugs:findbugs")  // for groovy-templates
 | |
| 	optional(project(":spring-context-support"))  // for FreeMarker support
 | |
| 	optional(project(":spring-oxm"))
 | |
| 	optional("jakarta.servlet.jsp:jakarta.servlet.jsp-api")
 | |
| 	optional("jakarta.servlet.jsp.jstl:jakarta.servlet.jsp.jstl-api")
 | |
| 	optional("jakarta.el:jakarta.el-api")
 | |
| 	optional("jakarta.xml.bind:jakarta.xml.bind-api")
 | |
| 	optional("org.webjars:webjars-locator-core")
 | |
| 	optional("com.rometools:rome")
 | |
| 	optional("com.github.librepdf:openpdf")
 | |
| 	optional("org.apache.poi:poi-ooxml")
 | |
| 	optional("org.freemarker:freemarker")
 | |
| 	optional("com.fasterxml.jackson.core:jackson-databind")
 | |
| 	optional("com.fasterxml.jackson.dataformat:jackson-dataformat-xml")
 | |
| 	optional("com.fasterxml.jackson.dataformat:jackson-dataformat-smile")
 | |
| 	optional("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor")
 | |
| 	optional("org.apache.groovy:groovy-templates")
 | |
| 	optional("org.jetbrains.kotlin:kotlin-reflect")
 | |
| 	optional("org.jetbrains.kotlin:kotlin-stdlib")
 | |
| 	optional("org.reactivestreams:reactive-streams")
 | |
| 	optional("org.jetbrains.kotlinx:kotlinx-coroutines-reactor")
 | |
| 	testImplementation(testFixtures(project(":spring-beans")))
 | |
| 	testImplementation(testFixtures(project(":spring-core")))
 | |
| 	testImplementation(testFixtures(project(":spring-context")))
 | |
| 	testImplementation(testFixtures(project(":spring-web")))
 | |
| 	testImplementation("jakarta.servlet:jakarta.servlet-api")
 | |
| 	testImplementation("org.eclipse.jetty:jetty-servlet") {
 | |
| 		exclude group: "jakarta.servlet", module: "jakarta.servlet-api"
 | |
| 	}
 | |
| 	testImplementation("org.eclipse.jetty:jetty-server") {
 | |
| 		exclude group: "jakarta.servlet", module: "jakarta.servlet-api"
 | |
| 	}
 | |
| 	testImplementation("org.apache.httpcomponents:httpclient")
 | |
| 	testImplementation("commons-io:commons-io")
 | |
| 	testImplementation("org.mozilla:rhino")
 | |
| 	testImplementation("org.dom4j:dom4j")
 | |
| 	testImplementation("jaxen:jaxen")
 | |
| 	testImplementation("org.xmlunit:xmlunit-assertj")
 | |
| 	testImplementation("org.xmlunit:xmlunit-matchers")
 | |
| 	testImplementation("org.hibernate:hibernate-validator")
 | |
| 	testImplementation("jakarta.validation:jakarta.validation-api")
 | |
| 	testImplementation("io.projectreactor:reactor-core")
 | |
| 	testImplementation("io.reactivex.rxjava3:rxjava")
 | |
| 	testImplementation("org.jetbrains.kotlin:kotlin-script-runtime")
 | |
| 	testRuntimeOnly("org.jetbrains.kotlin:kotlin-scripting-jsr223")
 | |
| 	testRuntimeOnly("org.jruby:jruby")
 | |
| 	testRuntimeOnly("org.python:jython-standalone")
 | |
| 	testRuntimeOnly("org.webjars:underscorejs")
 | |
| 	testRuntimeOnly("org.glassfish:jakarta.el")
 | |
| 	testRuntimeOnly("com.sun.xml.bind:jaxb-core")
 | |
| 	testRuntimeOnly("com.sun.xml.bind:jaxb-impl")
 | |
| 	testRuntimeOnly("com.sun.activation:jakarta.activation")
 | |
| }
 |