Skip to content

Commit

Permalink
Bump junit 5.10.1 -> 5.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdan Kobylynskyi committed Mar 4, 2024
1 parent 6531706 commit a18ed9b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ dependencies {
compileOnly "com.fasterxml.jackson.core:jackson-databind:2.15.3"
compileOnly "com.typesafe:config:1.4.3"

testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.1"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.1"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.1"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.2"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.10.2"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.2"
testImplementation "org.hamcrest:java-hamcrest:2.0.0.0"
}

Expand Down
4 changes: 2 additions & 2 deletions plugins/gradle/example-client-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ dependencies {
implementation "com.fasterxml.jackson.core:jackson-annotations:2.15.3"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"

testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.1"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.1"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.2"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.2"
}

/**
Expand Down
4 changes: 2 additions & 2 deletions plugins/gradle/example-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ dependencies {
annotationProcessor "org.projectlombok:lombok:1.18.30"

testImplementation "io.rest-assured:rest-assured:5.3.2"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.1"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.1"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.10.2"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.10.2"
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ dependencies {
implementation "com.fasterxml.jackson.core:jackson-databind:2.15.3"
implementation "com.typesafe:config:1.4.3"

testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.1'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2'
}

gradlePlugin {
Expand Down
4 changes: 2 additions & 2 deletions plugins/maven/example-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -185,12 +185,12 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.1</version>
<version>5.10.2</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.1</version>
<version>5.10.2</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit a18ed9b

Please sign in to comment.