@@ -52,22 +52,16 @@ tasks.withType<Jar> {
5252}
5353
5454dependencies {
55- val slf4jVersion: String by project
56- val logbackVersion: String by project
57- val junitVersion: String by project
58- val springBootVersion: String by project
59-
60- compileOnly(" org.slf4j:slf4j-api:$slf4jVersion " )
61- implementation(" ch.qos.logback:logback-classic:$logbackVersion " )
62- implementation(project(" :devkit-core" ))
63- implementation(project(" :devkit-utils" ))
64- implementation(" org.springframework.boot:spring-boot-autoconfigure:$springBootVersion " )
65- implementation(" org.springframework.boot:spring-boot-starter-logging:$springBootVersion " )
66- implementation(" org.springframework.boot:spring-boot-configuration-processor:$springBootVersion " )
67-
68- testImplementation(" org.springframework.boot:spring-boot-starter-test:$springBootVersion " )
69- testCompileOnly(" org.slf4j:slf4j-api:$slf4jVersion " )
70- testImplementation(" org.junit.jupiter:junit-jupiter:$junitVersion " )
55+ compileOnly(libs.slf4j)
56+ implementation(libs.logback)
57+ api(project(" :devkit-core" ))
58+ api(project(" :devkit-utils" ))
59+ implementation(libs.spring.boot.autoconfigure)
60+ implementation(libs.spring.boot.starter.logging)
61+ implementation(libs.spring.boot.configuration.processor)
62+
63+ testImplementation(libs.junit)
64+ testImplementation(libs.spring.boot.starter.test)
7165}
7266
7367tasks.test {
0 commit comments