We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d0c49d commit 641c477Copy full SHA for 641c477
paperweight-core/src/main/kotlin/io/papermc/paperweight/checkstyle/PaperCheckstyle.kt
@@ -40,10 +40,10 @@ abstract class PaperCheckstyle : Plugin<Project> {
40
}
41
42
target.tasks.withType(PaperCheckstyleTask::class.java).configureEach {
43
- rootPath.set(project.rootDir.path)
44
- directoriesToSkip.set(ext.directoriesToSkip)
45
- typeUseAnnotations.set(ext.typeUseAnnotations)
46
- customJavadocTags.set(ext.customJavadocTags)
+ rootPath.convention(project.rootDir.path)
+ directoriesToSkip.convention(ext.directoriesToSkip)
+ typeUseAnnotations.convention(ext.typeUseAnnotations)
+ customJavadocTags.convention(ext.customJavadocTags)
47
48
49
0 commit comments