blob: 3dc3d0c41ce6d63df4ac65ea02fb724ab0f2e7dc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
apply plugin: 'java'
dependencies {
compile("org.springframework.boot:spring-boot-starter-jdbc")
compile project(':juick-common')
compile "org.apache.commons:commons-dbcp2:2.2.0"
compile "com.googlecode.log4jdbc:log4jdbc:1.2"
runtime 'mysql:mysql-connector-java:5.1.45'
testCompile("org.springframework.boot:spring-boot-starter-test")
testRuntime 'com.h2database:h2:1.4.196'
testRuntime "org.postgresql:postgresql:42.2.2"
}
|