10 lines
424 B
Groovy
10 lines
424 B
Groovy
apply from: "${rootDir}/gradle/java.gradle"
|
|
apply from: "${rootDir}/gradle/jacoco.gradle"
|
|
|
|
description = 'spring-boot-jdbc'
|
|
dependencies {
|
|
compile group: 'com.h2database', name: 'h2', version: '1.4.196'
|
|
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: '1.5.3.RELEASE'
|
|
compile group: 'org.springframework.boot', name: 'spring-boot-starter-data-jpa', version: '1.5.3.RELEASE'
|
|
}
|