File tree 4 files changed +6
-7
lines changed
4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -232,9 +232,9 @@ subprojects {
232
232
// Configure jacoco to generate an HTML report.
233
233
tasks.jacocoTestReport {
234
234
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" ) )
238
238
}
239
239
}
240
240
Original file line number Diff line number Diff line change 68
68
<!-- Checks for Javadoc comments. -->
69
69
<!-- See http://checkstyle.sf.net/config_javadoc.html -->
70
70
<module name =" JavadocMethod" >
71
- <property name =" scope" value =" public" />
72
71
<property name =" allowMissingParamTags" value =" true" />
73
72
<property name =" allowMissingReturnTag" value =" true" />
74
73
<property name =" allowedAnnotations" value =" Override, Test" />
194
193
<property name =" allowNonPrintableEscapes" value =" true" />
195
194
</module >
196
195
</module >
197
- </module >
196
+ </module >
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
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
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ tasks.register("generate-smithy-build") {
146
146
147
147
tasks.register(" generate-default-configs-provider" , JavaExec ::class ) {
148
148
classpath = sourceSets[" main" ].runtimeClasspath
149
- main = " software.amazon.smithy.aws.typescript.codegen.DefaultsModeConfigGenerator"
149
+ mainClass.set( " software.amazon.smithy.aws.typescript.codegen.DefaultsModeConfigGenerator" )
150
150
args(listOf (project.properties[" defaultsModeConfigOutput" ]))
151
151
}
152
152
You can’t perform that action at this time.
0 commit comments