Skip to content

Commit 4ad9b11

Browse files
authored
Merge pull request #15 from eBay/mcumings/reportLocation
Improve intermediate output location and rev graph-analytics-plugin to v1.0.0
2 parents 5870e20 + 2b21b5c commit 4ad9b11

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# All files are owned by the maintainers
2-
* @eBayMobile/metrics-for-develocity-plugin-team
2+
* @eBay/metrics-for-develocity-plugin-team

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[versions]
2-
ebay-graphAnalytics = "0.0.1"
2+
ebay-graphAnalytics = "1.0.0"
33
# https://plugins.gradle.org/plugin/com.gradle.develocity
44
gradle-develocity = "3.18"
55
gradle-pluginPublish = "1.2.2"

src/main/kotlin/com/ebay/plugins/metrics/develocity/projectcost/ProjectCostPlugin.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ internal class ProjectCostPlugin @Inject constructor(
4040
project.tasks.register(taskName, ProjectCostReportTask::class.java).also { taskProvider ->
4141
taskProvider.configure { task ->
4242
with(task) {
43-
reportFile.set(project.layout.buildDirectory.file("reports/projectCost/projectCostReport-$reportDuration.json"))
43+
reportFile.set(project.layout.buildDirectory.file("projectCost/intermediate/$taskName.json"))
4444
}
4545
}
4646
taskProvider.inputsFromDuration(project, reportDuration, ProjectCostSummarizer.ID)
@@ -50,7 +50,7 @@ internal class ProjectCostPlugin @Inject constructor(
5050

5151
project.tasks.addRule(
5252
"Pattern: $PROJECT_COST_TASK_PREFIX-<Java Duration String> " +
53-
"Creates a project-specific report showing details about what has contibuted to the overall" +
53+
"Creates a project-specific report showing details about what has contributed to the overall" +
5454
"project build cost."
5555
) { taskName ->
5656
val matcher = PROJECT_COST_TASK_PATTERN.matcher(taskName)

0 commit comments

Comments
 (0)