Skip to content

Commit

Permalink
chore: upgrade gradle version to 8.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hpmellema committed Mar 15, 2024
1 parent 74b4812 commit 0795b0c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions codegen/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 codegen/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 codegen/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
2 changes: 1 addition & 1 deletion codegen/sdk-codegen/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ tasks.register("generate-smithy-build") {

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

Expand Down

0 comments on commit 0795b0c

Please sign in to comment.