Skip to content
This repository was archived by the owner on Apr 16, 2026. It is now read-only.

Commit de60598

Browse files
author
Laurens Westerlaken
authored
Update logback-classic version (#55)
* Update logback-classic version * Fix compile error
1 parent 3ee01ff commit de60598

5 files changed

Lines changed: 6 additions & 9 deletions

File tree

rewrite-csharp-remote-server/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies {
3030
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor")
3131

3232
// Need to have a slf4j binding to see any output enabled from the parser.
33-
runtimeOnly("ch.qos.logback:logback-classic:1.2.+")
33+
runtimeOnly("ch.qos.logback:logback-classic:1.5.+")
3434
testImplementation("org.openrewrite:rewrite-test")
3535

3636
testRuntimeOnly("org.openrewrite:rewrite-java-17")

rewrite-csharp-remote/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies {
2828
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor")
2929

3030
// Need to have a slf4j binding to see any output enabled from the parser.
31-
runtimeOnly("ch.qos.logback:logback-classic:1.2.+")
31+
runtimeOnly("ch.qos.logback:logback-classic:1.5.+")
3232
testImplementation("org.openrewrite:rewrite-test")
3333

3434
testRuntimeOnly("org.openrewrite:rewrite-java-17")

rewrite-csharp/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies {
2222
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor")
2323

2424
// Need to have a slf4j binding to see any output enabled from the parser.
25-
runtimeOnly("ch.qos.logback:logback-classic:1.2.+")
25+
runtimeOnly("ch.qos.logback:logback-classic:1.5.+")
2626
testImplementation("org.openrewrite:rewrite-test")
2727
testImplementation("org.openrewrite:rewrite-xml")
2828

rewrite-csharp/src/test/java/org/openrewrite/csharp/recipes/AvoidConstantArraysAsArgumentsTest.java

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,13 @@
1818
import org.junit.jupiter.api.Test;
1919
import org.openrewrite.Recipe;
2020
import org.openrewrite.config.CompositeRecipe;
21-
import org.openrewrite.csharp.recipes.microsoft.codeanalysis.netanalyzers.AbstractTypesShouldNotHaveConstructorsCA1012;
22-
import org.openrewrite.csharp.recipes.microsoft.codeanalysis.netanalyzers.AvoidConstArraysCA1861;
21+
import org.openrewrite.csharp.recipes.microsoft.AbstractTypesShouldNotHaveConstructorsCA1012;
22+
import org.openrewrite.csharp.recipes.microsoft.AvoidConstArraysCA1861;
2323
import org.openrewrite.test.RecipeSpec;
24-
import org.openrewrite.test.SourceSpecs;
2524
import org.openrewrite.test.TypeValidation;
2625

2726
import java.util.List;
2827

29-
import static java.util.Collections.singletonList;
30-
3128
public class AvoidConstantArraysAsArgumentsTest extends RoslynRecipeTest {
3229

3330
@Override

rewrite-test-engine-remote/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies {
3434
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-cbor")
3535

3636
// Need to have a slf4j binding to see any output enabled from the parser.
37-
runtimeOnly("ch.qos.logback:logback-classic:1.2.+")
37+
runtimeOnly("ch.qos.logback:logback-classic:1.5.+")
3838
testImplementation("org.openrewrite:rewrite-test")
3939

4040
testRuntimeOnly("org.openrewrite:rewrite-java-17")

0 commit comments

Comments
 (0)