You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
642 B
17 lines
642 B
description = "Spring Object/Relational Mapping" |
|
|
|
dependencies { |
|
compile(project(":spring-beans")) |
|
compile(project(":spring-core")) |
|
compile(project(":spring-jdbc")) |
|
compile(project(":spring-tx")) |
|
optional(project(":spring-aop")) |
|
optional(project(":spring-context")) |
|
optional(project(":spring-web")) |
|
optional("org.eclipse.persistence:org.eclipse.persistence.jpa:2.7.0") |
|
optional("org.hibernate:hibernate-core:5.2.12.Final") |
|
optional("javax.servlet:javax.servlet-api:3.1.0") |
|
testCompile("org.aspectj:aspectjweaver:${aspectjVersion}") |
|
testCompile("org.hsqldb:hsqldb:${hsqldbVersion}") |
|
testRuntime("javax.xml.bind:jaxb-api:2.3.0") |
|
}
|
|
|