Move modules to independent build files
The main `build.gradle` file contains now only the common build infrastructure; all module-specific build configurations have been moved to their own build file. Issue: SPR-15885
This commit is contained in:
15
spring-jms/spring-jms.gradle
Normal file
15
spring-jms/spring-jms.gradle
Normal file
@@ -0,0 +1,15 @@
|
||||
description = "Spring JMS"
|
||||
|
||||
dependencies {
|
||||
provided("javax.jms:javax.jms-api:2.0.1")
|
||||
compile(project(":spring-beans"))
|
||||
compile(project(":spring-core"))
|
||||
compile(project(":spring-messaging"))
|
||||
compile(project(":spring-tx"))
|
||||
optional(project(":spring-aop"))
|
||||
optional(project(":spring-context"))
|
||||
optional(project(":spring-oxm"))
|
||||
optional("javax.resource:javax.resource-api:1.7")
|
||||
optional("javax.transaction:javax.transaction-api:1.2")
|
||||
optional("com.fasterxml.jackson.core:jackson-databind:${jackson2Version}")
|
||||
}
|
||||
Reference in New Issue
Block a user