I am trying to set up Allure reports in my automation project. I am following - https://github.com/allure-framework/allure-core/wiki/TestNG, but the http://localhost:8080 only shows "Directory: /" text. I also found Unable to Deploy Allure report on Jetty server had the same problem but the solution there didn't help.
相关问题
- Include pom.xml in Jar with gradle
- What order does maven find its dependencies?
- proguard causing EnumMap NPE on dynamically declar
- Maven: How to read the Parent POM version
- enableHiveSupport throws error in java spark code
相关文章
- IDEA2020 安装maven 插件后,springboot程序 SpringBootApplic
- pom文件中的插件定义
- pom.xml中的project为何报红
- Hibernate Tutorial - Where to put Mapping File?
- Cannot use org.jvnet.jax-ws-commons.jaxws-maven-pl
- TestNG skipping tests - why?
- New Maven install: mvn -version java.lang.ClassNot
- What's the difference between archetype.xml an
Looks like you have wrong site path for jetty, try to change jetty parameter from:
<webAppSourceDirectory>${project.basedir}/site/allure-maven-plugin</webAppSourceDirectory>
to<webAppSourceDirectory>${project.build.directory}/site/allure-maven-plugin</webAppSourceDirectory>