私は数日から次のエラーを解決しようとしましたが、解決できません:(
私のモジュールの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>
<parent>
<artifactId>junitcategorizer</artifactId>
<groupId>com.topdesk.test.junitcategorizer</groupId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>..</relativePath>
</parent>
<artifactId>junitcategorizer.instrument</artifactId>
<name>JUnitCategorizer InstrumentationAgent</name>
<description>The agent used to instrument the called Java classes</description>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-commons</artifactId>
<version>4.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<Premain-Class>com.topdesk.junitcategorizer.instrument.InstrumentationAgent</Premain-Class>
<Agent-Class>com.topdesk.junitcategorizer.instrument.InstrumentationAgent</Agent-Class>
<Can-Redefine-Classes>true</Can-Redefine-Classes>
<Can-Retransform-Classes>true</Can-Retransform-Classes>
<Boot-Class-Path>${project.artifactId}-${project.version}.jar</Boot-Class-Path>
<Can-Set-Native-Method-Prefix>true</Can-Set-Native-Method-Prefix>
</manifestEntries>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>org.ow2.asm:*</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.objectweb.asm</pattern>
<shadedPattern>org.shaded.asm</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
次のエラーが表示されます。
[ERROR] Failed to execute goal org.Apache.maven.plugins:maven-surefire-plugin:2.
12:test (default-test) on project junitcategorizer.instrument: There are test failures.
[ERROR]
[ERROR] Please refer to D:\Masters\thesis related papers and tools\junitcategorizer\junitcategorizer.instrument\target\surefire-reports for the individual test results.
[ERROR] -> [Help 1]
org.Apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.Apache.maven.plugins:maven-surefire-plugin:2.12:test (default-test) on project junitcategorizer.instrument: There are test failures.
Please refer to D:\Masters\thesis related papers and tools\junitcategorizer\junitcategorizer.instrument\target\surefire-reports for the individual test results.
at org.Apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.Java:212)
at org.Apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.Java:153)
at org.Apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.Java:145)
at org.Apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.Java:116)
at org.Apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.Java:80)
at org.Apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.Java:51)
at org.Apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.Java:120)
at org.Apache.maven.DefaultMaven.doExecute(DefaultMaven.Java:347)
at org.Apache.maven.DefaultMaven.execute(DefaultMaven.Java:154)
at org.Apache.maven.cli.MavenCli.execute(MavenCli.Java:582)
at org.Apache.maven.cli.MavenCli.doMain(MavenCli.Java:214)
at org.Apache.maven.cli.MavenCli.main(MavenCli.Java:158)
at Sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at Sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.Java:62)
at Sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.Java:43)
at Java.lang.reflect.Method.invoke(Method.Java:497)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.Java:289)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.Java:229)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.Java:415)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.Java:356)
Caused by: org.Apache.maven.plugin.MojoFailureException: There are test failures.
Please refer to D:\Masters\thesis related papers and tools\junitcategorizer\junitcategorizer.instrument\target\surefire-reports for the individual test results.
at org.Apache.maven.plugin.surefire.SurefireHelper.reportExecution(SurefireHelper.Java:83)
at org.Apache.maven.plugin.surefire.SurefirePlugin.writeSummary(SurefirePlugin.Java:673)
at org.Apache.maven.plugin.surefire.SurefirePlugin.handleSummary(SurefirePlugin.Java:647)
at org.Apache.maven.plugin.surefire.AbstractSurefireMojo.executeAfterPreconditionsChecked(AbstractSurefireMojo.Java:137)
at org.Apache.maven.plugin.surefire.AbstractSurefireMojo.execute(AbstractSurefireMojo.Java:98)
at org.Apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.Java:132)
at org.Apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.Java:208)
... 19 more
[ERROR]
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
私は以下を試しましたが、助けにはなりませんでした:
私を助けてください!
これで私の問題は解決しました-受け入れてください。私のPOMでは2.10でしたが、2.19.1に更新されてPOMが更新されました。ターゲットフォルダー内でhtml cucumberレポートを生成しました。
ありがとうございました。
あなたのpomに追加します:
<plugins>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
</plugin>
</plugins>
あなたのエラーコードで彼はsurefire plugin
を見つけられなかったので追加してください
これが問題を解決するものです:
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
from ゴールorg.Apache.maven.plugins:maven-surefire-plugin:2.10:testの実行に失敗しました
これは一種のテストの失敗です。@ SpringBootApplicationアノテーションにはこれらの構成が含まれます。
1)@Configuration
2)@ComponentScan
3)@EnableAutoConfiguration
@ EnableAutoConfigurationがこのエラーの理由です。これにより、pom.xmlの依存関係に従ってアプリケーションが自動的に構成されます。
例として、pomにspring-data-jpa依存関係がある場合、データソースのapplication.propertiesファイルを見て、アプリケーションに構成を追加しようとします。したがって、それを解決するにはデータソースを追加する必要があります。
MySQLの場合:
spring.jpa.hibernate.ddl-auto=create
spring.datasource.url=jdbc:mysql://localhost/lahiru
spring.datasource.username=root
spring.datasource.password=
または
テストをスキップすることでこれを隠すことができます。
mvn install -DskipTests
詳細については、 詳細 。
バージョン3.0.0-M1で動作しました。
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
Sudoで実行する必要があるかもしれません。
同じ問題に何度も直面していましたが、2つの解決策があります。
解決策1: pom.xmlにsurefireプラグイン参照を追加します。すべてのノードがあることに注意してください!私のIDEでは、自動インポートバージョンがありませんでした!!!
<plugins>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M3</version>
</plugin>
</plugins>
解決策2: My IDEは、ファイルの先頭に誤ったインポートを追加しました。
IDEが追加されました
import org.junit.Test;
私はそれを交換しなければなりませんでした
import org.junit.jupiter.api.Test;
テストが失敗したとき、まったく同じスタックトレースを取得します。一番上に、失敗したテストクラスを識別するメッセージが表示されます。またはに行きます
D:\Masters\thesis related papers and tools\junitcategorizer\junitcategorizer.instrument\target\surefire-reports
障害レポートをご覧ください。問題を修正すると、ビルドは大丈夫です。
良いニュース:あなたのpomsは大丈夫のようです。Mavenはテストをコンパイルして実行できます。
これを試してみてください!
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M3</version>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
<shutdown>kill</shutdown> <!-- Use it if required-->
</configuration>
</plugin>
テストファイルを確認します。プロジェクトのすべてのテストファイルエラーをクリアし、クリーニングしてビルドする必要があります。
すでに3年ですが、同じことが私に起こりました、そして、私は私のケースで貢献したかったです。 @nikkソリューションを使用すると、より良い結果が得られましたが、他のエラーが表示されましたが、はい、パッケージ化することができました。
しかし、私の仕事はサーバーに同僚のコードを実装することであり、彼のテスト環境では彼には起こりませんでした。 。
最終的に、彼のアプリケーションは存在しないデータベースにmysqlテーブルを挿入したことが判明しました。解決策はそのようなデータベースを作成するのと同じくらい簡単で、エラーは消えました。
バージョン番号を2.19.1に変更してください:)
`<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<systemPropertyVariables>
<xmlOutputDir>${project.build.directory}/surefire</xmlOutputDir>
</systemPropertyVariables>
</configuration>
</plugin>`
この問題は、すでにビジーなポートに関連している可能性があります。 Surefireは5005ポートで実行されます。したがって、このポートが空いていることを確認する必要があります。変更しないか、プロセスを強制終了します。これは、Intellijでしばらく発生します。
私は同じ種類の問題に直面していました。Selenium、TestNG、Junitの依存関係のバージョン番号は、プロジェクトで使用したものと同じでなければなりません。たとえば、プロジェクトではSeleniumバージョン3.8を使用しています。このバージョン番号は、依存関係に記載する必要があります。
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.0.0-beta1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.Selenium</groupId>
<artifactId>Selenium-Java</artifactId>
<version>3.8.1</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8</version>
<scope>test</scope>
</dependency>
</dependencies>
Ubantuを使用している場合は、SudoでMVNを実行してみてください。私は同じエラーを受け取りました
mvn -Dtest=PerfLatency#latencyTest test -X
しかし
Sudo mvn -Dtest=PerfLatency#latencyTest test -X
私の問題を解決しました
こんにちはすべて、以下をPOMに追加して、mvn clean compile
を使用してからmvn install
を使用できます。
<!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<modelversion>
タグの上部にあるpom.xmlファイルの以下の行を追加してください:
<repositories>
<repository>
<id>central</id>
<name>Central Repository</name>
<url>http://repo.maven.Apache.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
私は同じ問題に直面しており、解決方法は以下の手順または画像を参照してください: