Skip to content

Commit

Permalink
chore: update gradle version to 8.2.1 (#1186)
Browse files Browse the repository at this point in the history
  • Loading branch information
hpmellema authored Mar 13, 2024
1 parent d929795 commit 50ee058
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,9 @@ subprojects {
// Configure jacoco to generate an HTML report.
tasks.jacocoTestReport {
reports {
xml.isEnabled = false
csv.isEnabled = false
html.destination = file("$buildDir/reports/jacoco")
xml.required.set(false)
csv.required.set(false)
html.outputLocation.set(file("$buildDir/reports/jacoco"))
}
}

Expand Down
3 changes: 1 addition & 2 deletions config/checkstyle/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@
<!-- Checks for Javadoc comments. -->
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
<module name="JavadocMethod">
<property name="scope" value="public"/>
<property name="allowMissingParamTags" value="true"/>
<property name="allowMissingReturnTag" value="true"/>
<property name="allowedAnnotations" value="Override, Test"/>
Expand Down Expand Up @@ -194,4 +193,4 @@
<property name="allowNonPrintableEscapes" value="true"/>
</module>
</module>
</module>
</module>
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.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,13 @@ public TypeScriptWriter addIgnoredDefaultImport(String name, String from, String
/**
* Imports a type using an alias from a module only if necessary.
*
* @deprecated Use {@link TypeScriptWriter#addImport(String, String, TypeScriptDependency)} addImport}
*
* @param name Type to import.
* @param as Alias to refer to the type as.
* @param from Module to import the type from.
*
* @return Returns the writer.
*
* @deprecated Use {@link TypeScriptWriter#addImport(String, String, TypeScriptDependency)} addImport}
*/
@Deprecated
public TypeScriptWriter addImport(String name, String as, String from) {
Expand Down

0 comments on commit 50ee058

Please sign in to comment.