Skip to content

Commit

Permalink
Pin Jackson to 2.12.x
Browse files Browse the repository at this point in the history
  • Loading branch information
jkschneider committed Jul 16, 2021
1 parent b55eb72 commit eea1fcb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ dependencies {
implementation("org.openrewrite:rewrite-java:$rewriteVersion")
implementation("org.openrewrite:rewrite-maven:$rewriteVersion")
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
runtimeOnly("com.fasterxml.jackson.core:jackson-core:latest.release")
runtimeOnly("com.fasterxml.jackson.core:jackson-core:2.12.+")
runtimeOnly("org.openrewrite:rewrite-java-11:$rewriteVersion")

compileOnly("org.projectlombok:lombok:latest.release")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,7 @@ class MockitoJUnitToMockitoExtensionTest : JavaRecipeTest {
import org.junit.Test;
import org.mockito.Mock;
import org.mockito.junit.jupiter.MockitoExtension;
import java.util.List;
import static org.mockito.Mockito.verify;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
*/
package org.openrewrite.java.testing.junit5

import org.junit.jupiter.api.Disabled
import org.junit.jupiter.api.Test
import org.openrewrite.Issue
import org.openrewrite.Recipe
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,9 @@ class JunitMockitoUpgradeIntegrationTest : JavaRecipeTest {
package org.openrewrite.java.testing.junit5;
import org.junit.jupiter.api.*;
import java.util.List;
import static org.mockito.Mockito.*;
public class ExampleJunitTestClass {
Expand Down

0 comments on commit eea1fcb

Please sign in to comment.