Archived
0

добален тест H2db

This commit is contained in:
2018-09-06 12:42:16 +03:00
parent bd37bc8615
commit bd72950db5
5 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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)
}