Archived
0
This repository has been archived on 2022-03-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
mc-core/h2_playermanager/build.gradle
DmitriyMX 3ce8aa878a Hibernate -> EclipseLink
потому что Hibernate как библиотека занимает много места
2019-02-11 11:59:36 +03:00

20 lines
602 B
Groovy

version '0.1'
ext {
spring_data_version = '2.1.0.RELEASE'
}
dependencies {
/* Core */
compile_excludeCopy project(':core')
/* Spring */
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: 'com.h2database', name: 'h2', version: '1.4.197')
compile (group: 'org.eclipse.persistence', name: 'org.eclipse.persistence.jpa', version: '2.7.0')
}