Skip to content

Commit 194c6fa

Browse files
Bump the gradle group across 1 directory with 6 updates
Bumps the gradle group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) | `5.11.1` | `5.12.0` | | [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit5) | `5.11.1` | `5.12.0` | | [org.junit.jupiter:junit-jupiter-params](https://github.com/junit-team/junit5) | `5.11.1` | `5.12.0` | | [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5) | `5.11.1` | `5.12.0` | | org.gradle.toolchains.foojay-resolver-convention | `0.8.0` | `0.9.0` | | [software.amazon.smithy:smithy-model](https://github.com/smithy-lang/smithy) | `1.51.0` | `1.55.0` | Updates `org.junit.jupiter:junit-jupiter-api` from 5.11.1 to 5.12.0 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit5@r5.11.1...r5.12.0) Updates `org.junit.jupiter:junit-jupiter-engine` from 5.11.1 to 5.12.0 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit5@r5.11.1...r5.12.0) Updates `org.junit.jupiter:junit-jupiter-params` from 5.11.1 to 5.12.0 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit5@r5.11.1...r5.12.0) Updates `org.junit.jupiter:junit-jupiter` from 5.11.1 to 5.12.0 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit5@r5.11.1...r5.12.0) Updates `org.gradle.toolchains.foojay-resolver-convention` from 0.8.0 to 0.9.0 Updates `software.amazon.smithy:smithy-model` from 1.51.0 to 1.55.0 - [Release notes](https://github.com/smithy-lang/smithy/releases) - [Changelog](https://github.com/smithy-lang/smithy/blob/main/CHANGELOG.md) - [Commits](smithy-lang/smithy@1.51.0...1.55.0) --- updated-dependencies: - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: org.junit.jupiter:junit-jupiter-engine dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: org.junit.jupiter:junit-jupiter-params dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: org.junit.jupiter:junit-jupiter dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: org.gradle.toolchains.foojay-resolver-convention dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle - dependency-name: software.amazon.smithy:smithy-model dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent fb6654a commit 194c6fa

File tree

15 files changed

+39
-39
lines changed

15 files changed

+39
-39
lines changed

custom-trait-examples/custom-trait-handwritten/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ dependencies {
1111
smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion")
1212
implementation("software.amazon.smithy:smithy-model:$smithyVersion")
1313

14-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1")
15-
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1")
16-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1")
14+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
15+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.1")
16+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.1")
1717
}
1818

1919
java {

custom-trait-examples/custom-trait-with-java-validator/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ dependencies {
1111
smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion")
1212
implementation("software.amazon.smithy:smithy-model:$smithyVersion")
1313

14-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1")
15-
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1")
16-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1")
14+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
15+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.1")
16+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.1")
1717
}
1818

1919
java {

custom-trait-examples/integ/custom-trait-handwritten-test/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ dependencies {
1313
implementation(project(":custom-trait-examples:custom-trait-handwritten"))
1414

1515
testImplementation("software.amazon.smithy:smithy-model:$smithyVersion")
16-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1")
17-
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1")
18-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1")
16+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
17+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.1")
18+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.1")
1919
}
2020

2121
// Use Junit5's test runner.

custom-trait-examples/integ/custom-trait-test/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ dependencies {
1313
implementation(project(":custom-trait-examples:custom-trait"))
1414

1515
testImplementation("software.amazon.smithy:smithy-model:$smithyVersion")
16-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1")
17-
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1")
18-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1")
16+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
17+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.1")
18+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.1")
1919
}
2020

2121
// Use Junit5's test runner.

custom-trait-examples/integ/custom-trait-with-java-validator-test/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ dependencies {
1313
implementation(project(":custom-trait-examples:custom-trait-with-java-validator"))
1414

1515
testImplementation("software.amazon.smithy:smithy-model:$smithyVersion")
16-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1")
17-
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1")
18-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1")
16+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
17+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.1")
18+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.1")
1919
}
2020

2121
// Use Junit5's test runner.

gradle-plugin-examples/integ/tutorial/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ dependencies {
1818
val smithyVersion: String by project
1919

2020
testImplementation("software.amazon.smithy:smithy-model:$smithyVersion")
21-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1")
22-
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1")
23-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1")
21+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
22+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.1")
23+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.1")
2424
testImplementation("org.hamcrest:hamcrest:3.0")
2525
}

gradle-plugin-examples/tutorial/lib/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
3030
implementation(libs.guava)
3131

32-
implementation("software.amazon.smithy:smithy-model:1.51.0")
32+
implementation("software.amazon.smithy:smithy-model:1.56.0")
3333
}
3434

3535
// Apply a specific Java toolchain to ease working on different environments.

gradle-plugin-examples/tutorial/settings.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
plugins {
99
// Apply the foojay-resolver plugin to allow automatic download of JDKs
10-
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
10+
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
1111
}
1212

1313
rootProject.name = "smithy-gradle-tutorial"

linting-and-validation-examples/custom-linter/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ dependencies {
5656

5757
implementation("software.amazon.smithy:smithy-model:$smithyVersion")
5858

59-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1")
60-
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1")
61-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1")
59+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
60+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.1")
61+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.1")
6262
}

linting-and-validation-examples/custom-validator/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ dependencies {
5252
smithyCli("software.amazon.smithy:smithy-cli:$smithyVersion")
5353
implementation("software.amazon.smithy:smithy-model:$smithyVersion")
5454

55-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1")
56-
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1")
57-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1")
55+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
56+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.1")
57+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.1")
5858
}

linting-and-validation-examples/decorators/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ repositories {
3232

3333
dependencies {
3434
// Use JUnit Jupiter for testing.
35-
testImplementation("org.junit.jupiter:junit-jupiter:5.11.1")
35+
testImplementation("org.junit.jupiter:junit-jupiter:5.12.1")
3636

3737
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
3838
val smithyVersion: String by project

linting-and-validation-examples/integ/common-linting-configuration-test/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ dependencies {
2525
implementation("software.amazon.smithy:smithy-linters:$smithyVersion")
2626

2727
testImplementation("software.amazon.smithy:smithy-model:$smithyVersion")
28-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1")
29-
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1")
30-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1")
28+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
29+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.1")
30+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.1")
3131
testImplementation("org.hamcrest:hamcrest:3.0")
3232
}
3333

linting-and-validation-examples/integ/custom-linter-test/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ dependencies {
2525
implementation(project(":linting-and-validation-examples:custom-linter"))
2626

2727
testImplementation("software.amazon.smithy:smithy-model:$smithyVersion")
28-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1")
29-
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1")
30-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1")
28+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
29+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.1")
30+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.1")
3131
}
3232

3333
smithy {

linting-and-validation-examples/integ/custom-validator-test/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ dependencies {
2525
implementation(project(":linting-and-validation-examples:custom-validator"))
2626

2727
testImplementation("software.amazon.smithy:smithy-model:$smithyVersion")
28-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1")
29-
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1")
30-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1")
28+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
29+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.1")
30+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.1")
3131
}
3232

3333
smithy {

linting-and-validation-examples/integ/decorators-test/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies {
2323
implementation(project(":linting-and-validation-examples:decorators"))
2424

2525
testImplementation("software.amazon.smithy:smithy-model:$smithyVersion")
26-
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.1")
27-
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.11.1")
28-
testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.1")
26+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.12.1")
27+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.1")
28+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.1")
2929
}

0 commit comments

Comments
 (0)