Skip to content

Commit

Permalink
Upgrade Gradle and Spotbugs versions (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
hpmellema authored Aug 24, 2023
1 parent 6c0a6b1 commit 1c765a9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<!-- Checks for Javadoc comments. -->
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
<module name="JavadocMethod">
<property name="scope" value="public"/>
<property name="accessModifiers" value="public"/>
<property name="allowMissingParamTags" value="true"/>
<property name="allowMissingReturnTag" value="true"/>
<property name="allowedAnnotations" value="Override, Test"/>
Expand Down
2 changes: 1 addition & 1 deletion custom-trait-examples/custom-string-trait/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
val smithyGradleVersion: String by project

`java-library`
id("com.github.spotbugs").version("4.7.1")
id("com.github.spotbugs").version("4.7.3")
id("software.amazon.smithy").version(smithyGradleVersion)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Custom Smithy structure trait with multiple inputs"
plugins {
val smithyGradleVersion: String by project
`java-library`
id("com.github.spotbugs").version("4.7.1")
id("com.github.spotbugs").version("4.7.3")
id("software.amazon.smithy").version(smithyGradleVersion)
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "A custom Smithy model-linter"

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

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 {
val smithyGradleVersion: String by project
`java-library`
id("com.github.spotbugs").version("4.7.1")
id("com.github.spotbugs").version("4.7.3")
id("software.amazon.smithy").version(smithyGradleVersion)
}

Expand Down

0 comments on commit 1c765a9

Please sign in to comment.