From a7a916bf3391fe9e1d20ffe8d36427700fcd43fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 9 Oct 2024 21:04:04 +0000 Subject: [PATCH] Bump the gradle group with 4 updates Bumps the gradle group with 4 updates: [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5), [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit5), [org.junit.jupiter:junit-jupiter-params](https://github.com/junit-team/junit5) and [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5). Updates `org.junit.jupiter:junit-jupiter-api` from 5.11.1 to 5.11.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.1...r5.11.2) Updates `org.junit.jupiter:junit-jupiter-engine` from 5.11.1 to 5.11.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.1...r5.11.2) Updates `org.junit.jupiter:junit-jupiter-params` from 5.11.1 to 5.11.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.1...r5.11.2) Updates `org.junit.jupiter:junit-jupiter` from 5.11.1 to 5.11.2 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.1...r5.11.2) --- updated-dependencies: - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle - dependency-name: org.junit.jupiter:junit-jupiter-engine dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle - dependency-name: org.junit.jupiter:junit-jupiter-params dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle - dependency-name: org.junit.jupiter:junit-jupiter dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gradle ... Signed-off-by: dependabot[bot] --- .../custom-trait-handwritten/build.gradle.kts | 6 +++--- .../custom-trait-with-java-validator/build.gradle.kts | 6 +++--- .../integ/custom-trait-handwritten-test/build.gradle.kts | 6 +++--- .../integ/custom-trait-test/build.gradle.kts | 6 +++--- .../custom-trait-with-java-validator-test/build.gradle.kts | 6 +++--- gradle-plugin-examples/integ/tutorial/build.gradle.kts | 6 +++--- .../custom-linter/build.gradle.kts | 6 +++--- .../custom-validator/build.gradle.kts | 6 +++--- linting-and-validation-examples/decorators/build.gradle.kts | 2 +- .../common-linting-configuration-test/build.gradle.kts | 6 +++--- .../integ/custom-linter-test/build.gradle.kts | 6 +++--- .../integ/custom-validator-test/build.gradle.kts | 6 +++--- .../integ/decorators-test/build.gradle.kts | 6 +++--- 13 files changed, 37 insertions(+), 37 deletions(-) diff --git a/custom-trait-examples/custom-trait-handwritten/build.gradle.kts b/custom-trait-examples/custom-trait-handwritten/build.gradle.kts index 0f9576f..1bb8c1c 100644 --- a/custom-trait-examples/custom-trait-handwritten/build.gradle.kts +++ b/custom-trait-examples/custom-trait-handwritten/build.gradle.kts @@ -11,9 +11,9 @@ dependencies { smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion") implementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.2") } java { diff --git a/custom-trait-examples/custom-trait-with-java-validator/build.gradle.kts b/custom-trait-examples/custom-trait-with-java-validator/build.gradle.kts index 3f3fb4f..798c3f6 100644 --- a/custom-trait-examples/custom-trait-with-java-validator/build.gradle.kts +++ b/custom-trait-examples/custom-trait-with-java-validator/build.gradle.kts @@ -11,9 +11,9 @@ dependencies { smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion") implementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.2") } java { diff --git a/custom-trait-examples/integ/custom-trait-handwritten-test/build.gradle.kts b/custom-trait-examples/integ/custom-trait-handwritten-test/build.gradle.kts index 34539ce..938a8ac 100644 --- a/custom-trait-examples/integ/custom-trait-handwritten-test/build.gradle.kts +++ b/custom-trait-examples/integ/custom-trait-handwritten-test/build.gradle.kts @@ -13,9 +13,9 @@ dependencies { implementation(project(":custom-trait-examples:custom-trait-handwritten")) testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.2") } // Use Junit5's test runner. diff --git a/custom-trait-examples/integ/custom-trait-test/build.gradle.kts b/custom-trait-examples/integ/custom-trait-test/build.gradle.kts index 918cd71..e0a6416 100644 --- a/custom-trait-examples/integ/custom-trait-test/build.gradle.kts +++ b/custom-trait-examples/integ/custom-trait-test/build.gradle.kts @@ -13,9 +13,9 @@ dependencies { implementation(project(":custom-trait-examples:custom-trait")) testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.2") } // Use Junit5's test runner. diff --git a/custom-trait-examples/integ/custom-trait-with-java-validator-test/build.gradle.kts b/custom-trait-examples/integ/custom-trait-with-java-validator-test/build.gradle.kts index 9e605bf..89ec6f7 100644 --- a/custom-trait-examples/integ/custom-trait-with-java-validator-test/build.gradle.kts +++ b/custom-trait-examples/integ/custom-trait-with-java-validator-test/build.gradle.kts @@ -13,9 +13,9 @@ dependencies { implementation(project(":custom-trait-examples:custom-trait-with-java-validator")) testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.2") } // Use Junit5's test runner. diff --git a/gradle-plugin-examples/integ/tutorial/build.gradle.kts b/gradle-plugin-examples/integ/tutorial/build.gradle.kts index 1d0c9f8..25ff502 100644 --- a/gradle-plugin-examples/integ/tutorial/build.gradle.kts +++ b/gradle-plugin-examples/integ/tutorial/build.gradle.kts @@ -18,8 +18,8 @@ dependencies { val smithyVersion: String by project testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.2") testImplementation("org.hamcrest:hamcrest:3.0") } diff --git a/linting-and-validation-examples/custom-linter/build.gradle.kts b/linting-and-validation-examples/custom-linter/build.gradle.kts index 3382b47..3304684 100644 --- a/linting-and-validation-examples/custom-linter/build.gradle.kts +++ b/linting-and-validation-examples/custom-linter/build.gradle.kts @@ -56,7 +56,7 @@ dependencies { implementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.2") } diff --git a/linting-and-validation-examples/custom-validator/build.gradle.kts b/linting-and-validation-examples/custom-validator/build.gradle.kts index 05a4bfc..917318e 100644 --- a/linting-and-validation-examples/custom-validator/build.gradle.kts +++ b/linting-and-validation-examples/custom-validator/build.gradle.kts @@ -52,7 +52,7 @@ dependencies { smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion") implementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.2") } diff --git a/linting-and-validation-examples/decorators/build.gradle.kts b/linting-and-validation-examples/decorators/build.gradle.kts index 9b6e2cd..cd44811 100644 --- a/linting-and-validation-examples/decorators/build.gradle.kts +++ b/linting-and-validation-examples/decorators/build.gradle.kts @@ -32,7 +32,7 @@ repositories { dependencies { // Use JUnit Jupiter for testing. - testImplementation("org.junit.jupiter:junit-jupiter:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter:5.11.2") // This dependency is used internally, and not exposed to consumers on their own compile classpath. val smithyVersion: String by project diff --git a/linting-and-validation-examples/integ/common-linting-configuration-test/build.gradle.kts b/linting-and-validation-examples/integ/common-linting-configuration-test/build.gradle.kts index 7d4d014..8c13d21 100644 --- a/linting-and-validation-examples/integ/common-linting-configuration-test/build.gradle.kts +++ b/linting-and-validation-examples/integ/common-linting-configuration-test/build.gradle.kts @@ -25,9 +25,9 @@ dependencies { implementation("software.amazon.smithy:smithy-linters:$smithyVersion") testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.2") testImplementation("org.hamcrest:hamcrest:3.0") } diff --git a/linting-and-validation-examples/integ/custom-linter-test/build.gradle.kts b/linting-and-validation-examples/integ/custom-linter-test/build.gradle.kts index acc7334..1e5cb67 100644 --- a/linting-and-validation-examples/integ/custom-linter-test/build.gradle.kts +++ b/linting-and-validation-examples/integ/custom-linter-test/build.gradle.kts @@ -25,9 +25,9 @@ dependencies { implementation(project(":linting-and-validation-examples:custom-linter")) testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.2") } smithy { diff --git a/linting-and-validation-examples/integ/custom-validator-test/build.gradle.kts b/linting-and-validation-examples/integ/custom-validator-test/build.gradle.kts index d22a3c3..333d9ef 100644 --- a/linting-and-validation-examples/integ/custom-validator-test/build.gradle.kts +++ b/linting-and-validation-examples/integ/custom-validator-test/build.gradle.kts @@ -25,9 +25,9 @@ dependencies { implementation(project(":linting-and-validation-examples:custom-validator")) testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.2") } smithy { diff --git a/linting-and-validation-examples/integ/decorators-test/build.gradle.kts b/linting-and-validation-examples/integ/decorators-test/build.gradle.kts index b5524cb..858cfeb 100644 --- a/linting-and-validation-examples/integ/decorators-test/build.gradle.kts +++ b/linting-and-validation-examples/integ/decorators-test/build.gradle.kts @@ -23,7 +23,7 @@ dependencies { implementation(project(":linting-and-validation-examples:decorators")) testImplementation("software.amazon.smithy:smithy-model:$smithyVersion") - testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1") - testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.2") + testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.2") }