Skip to content

Commit

Permalink
Upgrade to Gradle 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rschmitt authored and mtdowling committed Jul 5, 2023
1 parent 1b652a7 commit d6e01f9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down Expand Up @@ -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")
}
}
Expand Down
2 changes: 1 addition & 1 deletion config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<!-- Checks for Javadoc comments. -->
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
<module name="JavadocMethod">
<property name="scope" value="public"/>
<!-- <property name="scope" 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 gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,12 @@ public Map<String, String> 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<String, String> getOperationBindings(ToShapeId resource, ToShapeId operation) {
Expand Down

0 comments on commit d6e01f9

Please sign in to comment.