| buildscript { |
| repositories { |
| mavenCentral() |
| } |
| dependencies { |
| classpath "org.springframework.boot:spring-boot-gradle-plugin:$springBootGradlePluginVersion" |
| } |
| } |
| |
| apply plugin: 'groovy' |
| apply plugin: 'org.springframework.boot' |
| |
| version = rootProject.version |
| group = 'examples' |
| |
| dependencies { |
| |
| implementation platform("org.grails:grails-bom:$grailsVersion") |
| |
| implementation project(':gorm-hibernate5-spring-boot') |
| implementation 'org.springframework.boot:spring-boot-starter-web' |
| |
| runtimeOnly 'com.h2database:h2' |
| runtimeOnly 'com.zaxxer:HikariCP' |
| runtimeOnly 'org.springframework.boot:spring-boot-autoconfigure' |
| runtimeOnly 'org.springframework.boot:spring-boot-starter-logging' |
| runtimeOnly 'org.springframework.boot:spring-boot-starter-tomcat' |
| |
| testImplementation 'org.spockframework:spock-core' |
| } |