File tree 15 files changed +39
-39
lines changed
custom-trait-with-java-validator
custom-trait-handwritten-test
custom-trait-with-java-validator-test
linting-and-validation-examples
common-linting-configuration-test
15 files changed +39
-39
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ dependencies {
11
11
smithyCli(" software.amazon.smithy:smithy-cli:$smithyVersion " )
12
12
implementation(" software.amazon.smithy:smithy-model:$smithyVersion " )
13
13
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" )
17
17
}
18
18
19
19
java {
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ dependencies {
11
11
smithyCli(" software.amazon.smithy:smithy-cli:$smithyVersion " )
12
12
implementation(" software.amazon.smithy:smithy-model:$smithyVersion " )
13
13
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" )
17
17
}
18
18
19
19
java {
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ dependencies {
13
13
implementation(project(" :custom-trait-examples:custom-trait-handwritten" ))
14
14
15
15
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" )
19
19
}
20
20
21
21
// Use Junit5's test runner.
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ dependencies {
13
13
implementation(project(" :custom-trait-examples:custom-trait" ))
14
14
15
15
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" )
19
19
}
20
20
21
21
// Use Junit5's test runner.
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ dependencies {
13
13
implementation(project(" :custom-trait-examples:custom-trait-with-java-validator" ))
14
14
15
15
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" )
19
19
}
20
20
21
21
// Use Junit5's test runner.
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ dependencies {
18
18
val smithyVersion: String by project
19
19
20
20
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" )
24
24
testImplementation(" org.hamcrest:hamcrest:3.0" )
25
25
}
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ dependencies {
29
29
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
30
30
implementation(libs.guava)
31
31
32
- implementation(" software.amazon.smithy:smithy-model:1.51 .0" )
32
+ implementation(" software.amazon.smithy:smithy-model:1.56 .0" )
33
33
}
34
34
35
35
// Apply a specific Java toolchain to ease working on different environments.
Original file line number Diff line number Diff line change 7
7
8
8
plugins {
9
9
// 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"
11
11
}
12
12
13
13
rootProject.name = " smithy-gradle-tutorial"
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ dependencies {
56
56
57
57
implementation(" software.amazon.smithy:smithy-model:$smithyVersion " )
58
58
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" )
62
62
}
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ dependencies {
52
52
smithyCli(" software.amazon.smithy:smithy-cli:$smithyVersion " )
53
53
implementation(" software.amazon.smithy:smithy-model:$smithyVersion " )
54
54
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" )
58
58
}
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ repositories {
32
32
33
33
dependencies {
34
34
// 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" )
36
36
37
37
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
38
38
val smithyVersion: String by project
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ dependencies {
25
25
implementation(" software.amazon.smithy:smithy-linters:$smithyVersion " )
26
26
27
27
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" )
31
31
testImplementation(" org.hamcrest:hamcrest:3.0" )
32
32
}
33
33
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ dependencies {
25
25
implementation(project(" :linting-and-validation-examples:custom-linter" ))
26
26
27
27
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" )
31
31
}
32
32
33
33
smithy {
Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ dependencies {
25
25
implementation(project(" :linting-and-validation-examples:custom-validator" ))
26
26
27
27
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" )
31
31
}
32
32
33
33
smithy {
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ dependencies {
23
23
implementation(project(" :linting-and-validation-examples:decorators" ))
24
24
25
25
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" )
29
29
}
You can’t perform that action at this time.
0 commit comments