├── .gitlab-ci.yml ├── LICENSE ├── README.md ├── pom-allure-cli.xml ├── pom-allure-maven-plugin.xml └── scripts ├── allure-maven-plugin.sh ├── allure.sh └── index.html /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix124/allure-gitlab/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix124/allure-gitlab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix124/allure-gitlab/HEAD/README.md -------------------------------------------------------------------------------- /pom-allure-cli.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix124/allure-gitlab/HEAD/pom-allure-cli.xml -------------------------------------------------------------------------------- /pom-allure-maven-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix124/allure-gitlab/HEAD/pom-allure-maven-plugin.xml -------------------------------------------------------------------------------- /scripts/allure-maven-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix124/allure-gitlab/HEAD/scripts/allure-maven-plugin.sh -------------------------------------------------------------------------------- /scripts/allure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix124/allure-gitlab/HEAD/scripts/allure.sh -------------------------------------------------------------------------------- /scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix124/allure-gitlab/HEAD/scripts/index.html --------------------------------------------------------------------------------