Skip to content

Commit

Permalink
add display name
Browse files Browse the repository at this point in the history
  • Loading branch information
eroshenkoam committed Sep 20, 2021
1 parent 0b5425c commit b497249
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions allure-adapter-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ gradlePlugin {
plugins {
create("allureAdapterBasePlugin") {
id = "io.qameta.allure-adapter-base"
displayName = "Plugin for adpater commons between allure plugins"
description = "Declares common configurations for producing and consuming Allure results and reports"
implementationClass = "io.qameta.allure.gradle.adapter.AllureAdapterBasePlugin"
}
create("allureAdapterPlugin") {
id = "io.qameta.allure-adapter"
displayName = "Plugin for allure adapters"
description = "Implements autoconfiguration for collecting data for Allure"
implementationClass = "io.qameta.allure.gradle.adapter.AllureAdapterPlugin"
}
Expand Down
1 change: 1 addition & 0 deletions allure-base-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ gradlePlugin {
plugins {
create("allureBasePlugin") {
id = "io.qameta.allure-base"
displayName = "Plugin for commons between allure plugins"
description = "Adds a common allure extension to the project"
implementationClass = "io.qameta.allure.gradle.base.AllureBasePlugin"
}
Expand Down
2 changes: 2 additions & 0 deletions allure-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ gradlePlugin {
plugins {
create("allurePlugin") {
id = "io.qameta.allure"
displayName = "Allure Framework integration plugin"
description = "Adds a tasks to aggregate the results from multiple projects"
implementationClass = "io.qameta.allure.gradle.allure.AllurePlugin"
}
}
Expand Down
3 changes: 3 additions & 0 deletions allure-report-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,19 @@ gradlePlugin {
plugins {
create("allureDownloadPlugin") {
id = "io.qameta.allure-download"
displayName = "Plugin for downloading allure commandline"
description = "Adds a task to download the required Allure version"
implementationClass = "io.qameta.allure.gradle.download.AllureDownloadPlugin"
}
create("allureReportPlugin") {
id = "io.qameta.allure-report"
displayName = "Plugin for building allure report"
description = "Adds a task to build Allure report for the current project"
implementationClass = "io.qameta.allure.gradle.report.AllureReportPlugin"
}
create("allureAggregateReportPlugin") {
id = "io.qameta.allure-aggregate-report"
displayName = "Plugin for building aggregated allure report"
description = "Adds a task to aggregate the results from multiple projects"
implementationClass = "io.qameta.allure.gradle.report.AllureAggregateReportPlugin"
}
Expand Down

0 comments on commit b497249

Please sign in to comment.