Skip to content

Commit 50ee058

Browse files
authored
chore: update gradle version to 8.2.1 (#1186)
1 parent d929795 commit 50ee058

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,9 @@ subprojects {
232232
// Configure jacoco to generate an HTML report.
233233
tasks.jacocoTestReport {
234234
reports {
235-
xml.isEnabled = false
236-
csv.isEnabled = false
237-
html.destination = file("$buildDir/reports/jacoco")
235+
xml.required.set(false)
236+
csv.required.set(false)
237+
html.outputLocation.set(file("$buildDir/reports/jacoco"))
238238
}
239239
}
240240

config/checkstyle/checkstyle.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868
<!-- Checks for Javadoc comments. -->
6969
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
7070
<module name="JavadocMethod">
71-
<property name="scope" value="public"/>
7271
<property name="allowMissingParamTags" value="true"/>
7372
<property name="allowMissingReturnTag" value="true"/>
7473
<property name="allowedAnnotations" value="Override, Test"/>
@@ -194,4 +193,4 @@
194193
<property name="allowNonPrintableEscapes" value="true"/>
195194
</module>
196195
</module>
197-
</module>
196+
</module>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

smithy-typescript-codegen/src/main/java/software/amazon/smithy/typescript/codegen/TypeScriptWriter.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,13 @@ public TypeScriptWriter addIgnoredDefaultImport(String name, String from, String
104104
/**
105105
* Imports a type using an alias from a module only if necessary.
106106
*
107-
* @deprecated Use {@link TypeScriptWriter#addImport(String, String, TypeScriptDependency)} addImport}
108-
*
109107
* @param name Type to import.
110108
* @param as Alias to refer to the type as.
111109
* @param from Module to import the type from.
110+
*
112111
* @return Returns the writer.
112+
*
113+
* @deprecated Use {@link TypeScriptWriter#addImport(String, String, TypeScriptDependency)} addImport}
113114
*/
114115
@Deprecated
115116
public TypeScriptWriter addImport(String name, String as, String from) {

0 commit comments

Comments
 (0)