Skip to content

Commit 66dc47a

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/junit-framework@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/junit-framework@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/junit-framework@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/junit-framework@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] <support@github.com>
1 parent 5c57ac2 commit 66dc47a

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

Lines changed: 3 additions & 3 deletions
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.0")
15+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.0")
16+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.0")
1717
}
1818

1919
java {

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

Lines changed: 3 additions & 3 deletions
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.0")
15+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.0")
16+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.0")
1717
}
1818

1919
java {

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

Lines changed: 3 additions & 3 deletions
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.0")
17+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.0")
18+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.0")
1919
}
2020

2121
// Use Junit5's test runner.

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

Lines changed: 3 additions & 3 deletions
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.0")
17+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.0")
18+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.0")
1919
}
2020

2121
// Use Junit5's test runner.

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

Lines changed: 3 additions & 3 deletions
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.0")
17+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.0")
18+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.0")
1919
}
2020

2121
// Use Junit5's test runner.

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

Lines changed: 3 additions & 3 deletions
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.0")
22+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.0")
23+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.0")
2424
testImplementation("org.hamcrest:hamcrest:3.0")
2525
}

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

Lines changed: 1 addition & 1 deletion
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.55.0")
3333
}
3434

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

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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 3 additions & 3 deletions
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.0")
60+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.0")
61+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.0")
6262
}

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

Lines changed: 3 additions & 3 deletions
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.0")
56+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.12.0")
57+
testImplementation("org.junit.jupiter:junit-jupiter-params:5.12.0")
5858
}

0 commit comments

Comments
 (0)