私はスカラ テスト クラスを持っていますが、Maven ゴール 'test' を使用して実行しようとすると、テストが実行されません。「実行するテストがありません」という Maven メッセージが表示されます。テストはscalaテストクラスにありますが。追加の構成を追加する必要がありますか?
これが私のパッケージ設定です:
pom ファイルに対して実行したときの Maven の「テスト」ゴールの出力は次のとおりです。
[情報] プロジェクトをスキャンしています... [情報]
[情報] - - - - - - - - - - - - - - - - - - - - - - - - ------------------------- [情報] scala.maven.test 0.0.1-SNAPSHOT の構築 [情報] -------- -------------------------------------------------- -------------- [INFO] [INFO] --- maven-resources-plugin:2.4.3:resources (default-resources) @ scala.maven.test --- [WARNING ] プラットフォーム エンコーディング (実際には Cp1252) を使用して、フィルタリングされたリソースをコピーします。つまり、ビルドはプラットフォームに依存します! [INFO] Copying 0 resource [INFO] [INFO] --- maven-scala-plugin:2.9.1:add-source (scala-compile-first) @ scala.maven.test --- [INFO] ソースディレクトリを追加: C:\workspaces\29112012\scala.maven.test\src\main\scala [INFO] テスト ソース ディレクトリを追加: C:\workspaces\29112012\scala.maven.test\src\test\scala [INFO] [INFO] ] --- maven-scala-plugin:2.9.1:compile (scala-compile-first) @ scala.maven.test --- [エラー] C:-------------------------------------------------- ----- テスト -------------------------------------------- ----------- 実行するテストはありません。
結果 :
テストの実行: 0、失敗: 0、エラー: 0、スキップ: 0
[情報] - - - - - - - - - - - - - - - - - - - - - - - - ------------------------- [情報] ビルド成功 [情報] ----------------- -------------------------------------------------- ----- [情報] 合計時間: 11.354 秒 [情報] 終了時刻: 11 月 30 日金曜日 16:57:05 GMT
2012 [情報] 最終記憶: 7M/17M [情報]
ここに私の 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>scala.maven.test</groupId>
<artifactId>scala.maven.test</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<version>2.9.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.scala-tools
</groupId>
<artifactId>
maven-scala-plugin
</artifactId>
<versionRange>
[2.9.1,)
</versionRange>
<goals>
<goal>add-source</goal>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<executions>
<execution>
<id>scala-compile-first</id>
<phase>process-resources</phase>
<goals>
<goal>add-source</goal>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>scala-test-compile</id>
<phase>process-test-resources</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_2.9.0-1</artifactId>
<version>2.0.M5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
</dependency>
</dependencies>
</project>