gradle: Format build files

This commit is contained in:
Owain van Brakel
2019-07-24 22:49:38 +02:00
parent da159fd765
commit e911effeed
20 changed files with 224 additions and 239 deletions

View File

@@ -1,13 +1,12 @@
description = 'Cache Updater'
dependencies {
compile group: 'org.springframework.boot', name: 'spring-boot-starter', version:'1.5.6.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-jdbc', version:'1.5.6.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-devtools', version:'1.5.6.RELEASE'
compile group: 'mysql', name: 'mysql-connector-java', version:'8.0.16'
compile project(':cache-client')
compile group: 'org.sql2o', name: 'sql2o', version:'1.6.0'
compile group: 'io.minio', name: 'minio', version:'3.0.6'
compileOnly group: 'org.projectlombok', name: 'lombok', version:'1.18.8'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version:'1.18.8'
compile group: 'org.springframework.boot', name: 'spring-boot-starter', version: '1.5.6.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-jdbc', version: '1.5.6.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-devtools', version: '1.5.6.RELEASE'
compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.16'
compile project(':cache-client')
compile group: 'org.sql2o', name: 'sql2o', version: '1.6.0'
compile group: 'io.minio', name: 'minio', version: '3.0.6'
compileOnly group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: '1.18.8'
}