Skip to content
This repository was archived by the owner on Jan 29, 2026. It is now read-only.

Commit ffcba51

Browse files
committed
Update docs/plugin-development/reporting-api/README.md
1 parent ff0c6d5 commit ffcba51

1 file changed

Lines changed: 10 additions & 8 deletions

File tree

  • docs/plugin-development/reporting-api

docs/plugin-development/reporting-api/README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ object.
1515
We’ll be working with the [VerifyPluginProjectConfigurationTask](https://github.com/JetBrains/intellij-platform-gradle-plugin/blob/476130fa41347ef4e5480fb44b9d454e51aa7a18/src/main/kotlin/org/jetbrains/intellij/platform/gradle/tasks/VerifyPluginProjectConfigurationTask.kt#L44), a task from the [IntelliJ Platform Gradle Plugin](https://github.com/JetBrains/intellij-platform-gradle-plugin/tree/476130fa41347ef4e5480fb44b9d454e51aa7a18)
1616
that does the simple job of validating a plugin project’s configuration.
1717

18+
!!! note
19+
Tested with Gradle 9.0.0
20+
1821
## Declaring Reporting Support in a Task
1922

2023
Tasks that produce reports must implement the `Reporting` interface with a type argument that extends `ReportContainer`:
@@ -194,11 +197,10 @@ if (verifyPluginProjectReports.txt.required.get()) {
194197

195198
## References
196199

197-
- https://docs.gradle.org/current/dsl/org.gradle.api.reporting.ReportContainer.html
198-
- https://docs.gradle.org/current/dsl/org.gradle.api.reporting.Reporting.html
199-
- https://docs.gradle.org/current/dsl/org.gradle.api.reporting.Report.html
200-
- https://docs.gradle.org/current/dsl/org.gradle.api.reporting.SingleFileReport.html
201-
- https://docs.gradle.org/current/dsl/org.gradle.api.reporting.DirectoryReport.html
202-
- https://github.com/gradle/gradle/issues/7063
203-
204-
Tested with: Gradle 9.0.0
200+
- [PR for VerifyPluginProjectConfigurationTask, GSoC 2025](https://github.com/JetBrains/intellij-platform-gradle-plugin/pull/2016)
201+
- [ReportContainer DSL](https://docs.gradle.org/current/dsl/org.gradle.api.reporting.ReportContainer.html)
202+
- [Reporting DSL](https://docs.gradle.org/current/dsl/org.gradle.api.reporting.Reporting.html)
203+
- [Report DSL](https://docs.gradle.org/current/dsl/org.gradle.api.reporting.Report.html)
204+
- [SingleFileReport DSL](https://docs.gradle.org/current/dsl/org.gradle.api.reporting.SingleFileReport.html)
205+
- [DirectoryReport DSL](https://docs.gradle.org/current/dsl/org.gradle.api.reporting.DirectoryReport.html)
206+
- [https://github.com/gradle/gradle/issues/7063](https://github.com/gradle/gradle/issues/7063)

0 commit comments

Comments
 (0)