Skip to content

Commit 841eb08

Browse files
committed
Move snakeyaml and logback to gradle library
1 parent 8f232cd commit 841eb08

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

gradle/libs.versions.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ micronaut-docker = { id = 'io.micronaut.docker', version.ref = 'io-micronaut' }
2727
[libraries]
2828
jspecify = { module = 'org.jspecify:jspecify', version.ref = 'jspecify' }
2929
slf4j-api = { module = 'org.slf4j:slf4j-api' }
30+
snakeyaml = { module = 'org.yaml:snakeyaml' }
31+
logback = { module = 'ch.qos.logback:logback-classic' }
3032

3133
junit = { module = 'org.junit:junit-bom', version.ref = 'junit' }
3234
junit-jupiter = { module = 'org.junit.jupiter:junit-jupiter' }

mnt/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ plugins {
77

88
dependencies {
99
implementation libs.jspecify
10-
runtimeOnly 'org.yaml:snakeyaml'
11-
runtimeOnly 'ch.qos.logback:logback-classic'
10+
runtimeOnly libs.snakeyaml
11+
runtimeOnly libs.logback
1212

1313
implementation libs.slf4j.api
1414

0 commit comments

Comments
 (0)