Archived
0

Hibernate -> EclipseLink

потому что Hibernate как библиотека занимает много места
This commit is contained in:
2019-02-11 11:59:36 +03:00
parent f08190fba7
commit 3ce8aa878a
5 changed files with 45 additions and 17 deletions

View File

@@ -9,9 +9,12 @@ dependencies {
compile_excludeCopy project(':core')
/* Spring */
compile (group: 'org.springframework.data', name: 'spring-data-jpa', version: spring_data_version)
compile (group: 'org.springframework.data', name: 'spring-data-jpa', version: spring_data_version) {
exclude (group: 'org.hibernate', module: 'hibernate-entitymanager')
exclude (group: 'org.hibernate', module: 'hibernate-core')
}
/* Database */
compile (group: 'org.hibernate', name: 'hibernate-entitymanager', version: '5.3.6.Final')
compile (group: 'com.h2database', name: 'h2', version: '1.4.197')
compile (group: 'org.eclipse.persistence', name: 'org.eclipse.persistence.jpa', version: '2.7.0')
}