以下のようなプロジェクト構造があります。Gradle のTestReport機能を使用して、すべてのテスト結果を 1 つのディレクトリに集約したいと考えています。次に、すべてのサブプロジェクトの単一の index.html ファイルからすべてのテスト結果にアクセスできます。どうすればこれを達成できますか?
.
|--ProjectA
|--src/test/...
|--build
|--reports
|--tests
|--index.html (testresults)
|--..
|--..
|--ProjectB
|--src/test/...
|--build
|--reports
|--tests
|--index.html (testresults)
|--..
|--..