Add one-off dependencies to version catalog (#245)

This commit is contained in:
Vechro
2022-07-03 16:59:20 +03:00
committed by GitHub
parent ea38ed2473
commit a38eaa761f
9 changed files with 51 additions and 30 deletions

View File

@@ -1,8 +0,0 @@
dependencies {
def withoutSlf4j = {
exclude group: 'org.slf4j'
exclude group: 'log4j'
}
implementation "com.illposed.osc:javaosc-core:0.8", withoutSlf4j
}

View File

@@ -0,0 +1,6 @@
dependencies {
implementation(libs.javaosc.core) {
exclude(group = "org.slf4j")
exclude(group = "log4j")
}
}