Skip to content

Commit a72a443

Browse files
committed
Replace println with log4j
1 parent abf0c85 commit a72a443

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies {
2828
implementation("javax.xml.bind:jaxb-api:2.3.1")
2929
implementation("com.sun.xml.bind:jaxb-core:2.3.0.1")
3030
implementation("com.sun.xml.bind:jaxb-impl:2.3.3")
31-
implementation ("com.github.paulorb:modbus-kt:1.0.12")
31+
implementation ("com.github.paulorb:modbus-kt:1.0.14")
3232
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
3333
implementation("org.apache.commons:commons-csv:1.10.0")
3434
implementation("org.apache.logging.log4j:log4j-core:$log4jVersion")
@@ -37,6 +37,10 @@ dependencies {
3737
testImplementation(kotlin("test"))
3838
}
3939

40+
configurations.all {
41+
exclude(module = "sl")
42+
}
43+
4044
kapt {
4145
arguments {
4246
arg("project", "${project.group}/${project.name}")

0 commit comments

Comments
 (0)