spring-tx.gradle 678 字节
Newer Older
1 2 3 4 5 6 7 8
description = "Spring Transaction"

dependencies {
	compile(project(":spring-beans"))
	compile(project(":spring-core"))
	optional(project(":spring-aop"))
	optional(project(":spring-context"))  // for JCA, @EnableTransactionManagement
	optional("javax.ejb:javax.ejb-api:3.2")
9
	optional("javax.interceptor:javax.interceptor-api:1.2.2")
10
	optional("javax.resource:javax.resource-api:1.7.1")
11
	optional("javax.transaction:javax.transaction-api:1.3")
12 13 14
	optional("com.ibm.websphere:uow:6.0.2.17")
	testCompile("org.aspectj:aspectjweaver:${aspectjVersion}")
	testCompile("org.codehaus.groovy:groovy-all:${groovyVersion}")
15
	testCompile("org.eclipse.persistence:javax.persistence:2.2.0")
16
}