diff --git a/build.gradle b/build.gradle index ce01367eec9..3d55a5dbdf3 100644 --- a/build.gradle +++ b/build.gradle @@ -23,7 +23,7 @@ plugins { id "jacoco" id "com.github.spotbugs" version "4.7.1" id "io.codearte.nexus-staging" version "0.30.0" - id "me.champeau.jmh" version "0.6.5" + id "me.champeau.jmh" version "0.7.1" id 'com.github.johnrengelman.shadow' version "7.1.2" } @@ -219,8 +219,8 @@ subprojects { } jacocoTestReport { reports { - xml.enabled false - csv.enabled false + xml.required.set(false) + csv.required.set(false) html.destination file("$buildDir/reports/jacoco") } } diff --git a/config/checkstyle/checkstyle.xml b/config/checkstyle/checkstyle.xml index 3576e20f2c2..84823f9f9b5 100644 --- a/config/checkstyle/checkstyle.xml +++ b/config/checkstyle/checkstyle.xml @@ -68,7 +68,7 @@ - + diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 2e6e5897b52..15de90249f9 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ 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-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/smithy-model/src/main/java/software/amazon/smithy/model/knowledge/IdentifierBindingIndex.java b/smithy-model/src/main/java/software/amazon/smithy/model/knowledge/IdentifierBindingIndex.java index a33c8174e34..764487b9aa5 100644 --- a/smithy-model/src/main/java/software/amazon/smithy/model/knowledge/IdentifierBindingIndex.java +++ b/smithy-model/src/main/java/software/amazon/smithy/model/knowledge/IdentifierBindingIndex.java @@ -115,12 +115,12 @@ public Map getOperationOutputBindings(ToShapeId resource, ToShap * Gets a map of identifier names to input member names that provide a * value for that identifier. * - * @deprecated Use {@link #getOperationInputBindings} instead. - * * @param resource Shape ID of a resource. * @param operation Shape ID of an operation. * @return Returns the identifier bindings map or an empty map if the * binding is invalid or cannot be found. + * + * @deprecated Use {@link #getOperationInputBindings} instead. */ @Deprecated public Map getOperationBindings(ToShapeId resource, ToShapeId operation) {