diff --git a/README.md b/README.md index 1a0873618..202c13479 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [twitter-team]: https://twitter.com/QametaSoftware/lists/team/members "Team" [CONTRIBUTING.md]: .github/CONTRIBUTING.md -[docs]: https://docs.qameta.io/allure/2.0/ +[docs]: https://allurereport.org/docs/ # Allure Java Integrations @@ -253,4 +253,4 @@ To use Cucumber simply add the following dependency to your project: $LATEST_VERSION -``` \ No newline at end of file +``` diff --git a/build.gradle.kts b/build.gradle.kts index 79e22c477..277888eee 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -68,11 +68,15 @@ configure(subprojects) { pom { name.set(project.name) description.set("Module ${project.name} of Allure Framework.") - url.set("https://github.com/allure-framework/allure-java") + url.set("https://allurereport.org/") + organization { + name.set("Qameta Software") + url.set("https://qameta.io/") + } licenses { license { name.set("The Apache License, Version 2.0") - url.set("http://www.apache.org/licenses/LICENSE-2.0.txt") + url.set("https://www.apache.org/licenses/LICENSE-2.0.txt") } } developers { @@ -80,11 +84,13 @@ configure(subprojects) { id.set("baev") name.set("Dmitry Baev") email.set("dmitry.baev@qameta.io") + url.set("https://github.com/baev") } developer { id.set("eroshenkoam") name.set("Artem Eroshenko") email.set("artem.eroshenko@qameta.io") + url.set("https://github.com/eroshenkoam") } } scm { @@ -93,9 +99,13 @@ configure(subprojects) { url.set("https://github.com/allure-framework/allure-java") } issueManagement { - system.set("GitHub Issues") + system.set("Github Issues") url.set("https://github.com/allure-framework/allure-java/issues") } + ciManagement { + system.set("Github Actions") + url.set("https://github.com/allure-framework/allure-java/actions") + } } } }