Archived
0
This repository has been archived on 2022-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
mc-server/h2_playermanager/build.gradle

16 lines
436 B
Groovy

version '1.0-SNAPSHOT'
dependencies {
/* Core */
compile_excludeCopy project(':core')
/* Spring */
compile (group: 'org.springframework', name: 'spring-jdbc', version: spring_version) {
exclude group: 'commons-logging'
}
/* Database */
compile (group: 'com.h2database', name: 'h2', version: '1.4.196')
testCompile (group: 'org.springframework', name: 'spring-test', version: spring_version)
}