Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
description = "A package used to define custom traits"

plugins {
id("com.github.spotbugs") version "6.2.5"
id("com.github.spotbugs") version "6.4.4"
id("software.amazon.smithy.gradle.smithy-trait-package")
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
description = "A package used to define custom trait with a Java validator"

plugins {
id("com.github.spotbugs") version "6.2.5"
id("com.github.spotbugs") version "6.4.4"
id("software.amazon.smithy.gradle.smithy-trait-package")
}

Expand Down
2 changes: 1 addition & 1 deletion custom-trait-examples/custom-trait/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
description = "A package used to define custom traits"

plugins {
id("com.github.spotbugs") version "6.2.5"
id("com.github.spotbugs") version "6.4.4"
id("software.amazon.smithy.gradle.smithy-trait-package")
}

Expand Down
2 changes: 1 addition & 1 deletion gradle-plugin-examples/tutorial/lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies {
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation(libs.guava)

implementation("software.amazon.smithy:smithy-model:1.51.0")
implementation("software.amazon.smithy:smithy-model:1.63.0")
}

// Apply a specific Java toolchain to ease working on different environments.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "A custom Smithy model-linter"

plugins {
`java-library`
id("com.github.spotbugs") version "6.2.5"
id("com.github.spotbugs") version "6.4.4"
}

java {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Creates a custom Smithy model validator"

plugins {
`java-library`
id("com.github.spotbugs") version "6.2.5"
id("com.github.spotbugs") version "6.4.4"
id("software.amazon.smithy.gradle.smithy-jar")
}

Expand Down
Loading