私は文書化されたものとまったく同じようにしましたが、MAVEN Build のコンパイル中にエラーが発生しました。
MAVEN POM.XML の共有
それを調べて、どこで間違いをしたか教えてください!
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>myMavenTest</groupId>
<artifactId>com.myTest</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>com.myTest</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<aspectj.version>1.7.4</aspectj.version>
<allure.version>1.4.1</allure.version>
</properties>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.1.1</version>
<scope>test</scope>
</dependency>
<!-- Selenium -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.28.0</version>
</dependency>
<!-- POI -->
<dependency>
<groupId>org.apache.xmlbeans</groupId>
<artifactId>xmlbeans</artifactId>
<version>2.3.0</version>
</dependency>
<!-- Log4J -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.14</version>
</dependency>
<!-- JavaMail -->
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>ru.yandex.qatools.allure</groupId>
<artifactId>allure-testng-adaptor</artifactId>
<version>${allure.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.17</version>
<configuration>
<testFailureIgnore>false</testFailureIgnore>
<argLine>
-javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/${aspectj.version}/aspectjweaver-${aspectj.version}.jar
</argLine>
<!--only for 1.3.* TestNG adapters. Since 1.4.0.RC4 listener adds via ServiceLoader-->
<properties>
<property>
<name>listener</name>
<value>ru.yandex.qatools.allure.testng.AllureTestListener</value>
</property>
</properties>
</configuration>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>${aspectj.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>ru.yandex.qatools.allure</groupId>
<artifactId>allure-maven-plugin</artifactId>
<version>2.0</version>
</plugin>
</plugins>
</reporting>
</project>
これはドキュメントに記載されているものです
Allure レポートは、任意の TestNG テストに対して生成できます。テスト結果を取得するには、次のものが必要です。
AllureTestListener を TestNG 設定に追加 AspectJ Weaver 依存関係とそのプロパティを追加 テストを実行
これは私が得ているwqtです
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-source-plugin:2.2.
1:jar (attach-sources) on project com.myTest: Execution attach-sources of goal o
rg.apache.maven.plugins:maven-source-plugin:2.2.1:jar failed: Plugin org.apache.
maven.plugins:maven-source-plugin:2.2.1 or one of its dependencies could not be
resolved: Failed to collect dependencies at org.apache.maven.plugins:maven-sourc
e-plugin:jar:2.2.1 -> org.codehaus.plexus:plexus-archiver:jar:2.2: Failed to rea
d artifact descriptor for org.codehaus.plexus:plexus-archiver:jar:2.2: Could not
transfer artifact org.codehaus.plexus:plexus-archiver:pom:2.2 from/to central (
https://repo.maven.apache.org/maven2): repo.maven.apache.org: Unknown host repo.
maven.apache.org -> [Help 1]