diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index a25abde..0569ca3 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1,2 @@ # All files are owned by the maintainers -* @eBayMobile/metrics-for-develocity-plugin-team +* @eBay/metrics-for-develocity-plugin-team diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index e9bfde4..263f56a 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,5 +1,5 @@ [versions] -ebay-graphAnalytics = "0.0.1" +ebay-graphAnalytics = "1.0.0" # https://plugins.gradle.org/plugin/com.gradle.develocity gradle-develocity = "3.18" gradle-pluginPublish = "1.2.2" diff --git a/src/main/kotlin/com/ebay/plugins/metrics/develocity/projectcost/ProjectCostPlugin.kt b/src/main/kotlin/com/ebay/plugins/metrics/develocity/projectcost/ProjectCostPlugin.kt index fe8a1dc..420aab0 100644 --- a/src/main/kotlin/com/ebay/plugins/metrics/develocity/projectcost/ProjectCostPlugin.kt +++ b/src/main/kotlin/com/ebay/plugins/metrics/develocity/projectcost/ProjectCostPlugin.kt @@ -40,7 +40,7 @@ internal class ProjectCostPlugin @Inject constructor( project.tasks.register(taskName, ProjectCostReportTask::class.java).also { taskProvider -> taskProvider.configure { task -> with(task) { - reportFile.set(project.layout.buildDirectory.file("reports/projectCost/projectCostReport-$reportDuration.json")) + reportFile.set(project.layout.buildDirectory.file("projectCost/intermediate/$taskName.json")) } } taskProvider.inputsFromDuration(project, reportDuration, ProjectCostSummarizer.ID) @@ -50,7 +50,7 @@ internal class ProjectCostPlugin @Inject constructor( project.tasks.addRule( "Pattern: $PROJECT_COST_TASK_PREFIX- " + - "Creates a project-specific report showing details about what has contibuted to the overall" + + "Creates a project-specific report showing details about what has contributed to the overall" + "project build cost." ) { taskName -> val matcher = PROJECT_COST_TASK_PATTERN.matcher(taskName)