Skip to content

Commit 343b066

Browse files
authored
chore: upgrade gradle version to 8.2.1 (#5908)
1 parent 5ff1e81 commit 343b066

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

codegen/build.gradle.kts

+3-3
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

codegen/config/checkstyle/checkstyle.xml

+1-2
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>
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

codegen/sdk-codegen/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ tasks.register("generate-smithy-build") {
146146

147147
tasks.register("generate-default-configs-provider", JavaExec::class) {
148148
classpath = sourceSets["main"].runtimeClasspath
149-
main = "software.amazon.smithy.aws.typescript.codegen.DefaultsModeConfigGenerator"
149+
mainClass.set("software.amazon.smithy.aws.typescript.codegen.DefaultsModeConfigGenerator")
150150
args(listOf(project.properties["defaultsModeConfigOutput"]))
151151
}
152152

0 commit comments

Comments
 (0)