Archived
0

JDBC -> JPA

This commit is contained in:
2018-10-07 19:05:19 +03:00
parent 48b8d0377c
commit f9553794e9
21 changed files with 420 additions and 697 deletions

View File

@@ -1,12 +1,17 @@
version '1.0-SNAPSHOT'
ext {
spring_data_version = '2.1.0.RELEASE'
}
dependencies {
/* Core */
compile_excludeCopy project(':core')
/* Spring */
compile (group: 'org.springframework', name: 'spring-jdbc', version: spring_version)
compile (group: 'org.springframework.data', name: 'spring-data-jpa', version: spring_data_version)
/* Database */
compile (group: 'org.hibernate', name: 'hibernate-entitymanager', version: '5.3.6.Final')
compile (group: 'com.h2database', name: 'h2', version: '1.4.197')
}