* gradle: Update dependencies Also made the version numbers global to make updating easier, also this way we can't have mismatches where different projects use diffrent versions of a dep * cache: Fix TitleDumper test * gradle: Format build files * httpserviceplus: Remove unneeded deps
16 lines
799 B
Groovy
16 lines
799 B
Groovy
description = 'Cache Updater'
|
|
|
|
dependencies {
|
|
annotationProcessor group: 'org.projectlombok', name: 'lombok', version: lombok
|
|
|
|
compileOnly group: 'org.projectlombok', name: 'lombok', version: lombok
|
|
|
|
implementation group: 'io.minio', name: 'minio', version: minio
|
|
implementation group: 'mysql', name: 'mysql-connector-java', version: mysqlConnectorJava
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-devtools', version: springboot
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter', version: springboot
|
|
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-jdbc', version: springboot
|
|
implementation group: 'org.sql2o', name: 'sql2o', version: sql2o
|
|
implementation project(':cache-client')
|
|
}
|