0

コードを実行しようとしていますが、以下のエラーが発生しています..

JBOSS 4.0.5 サーバー、Netbeans 7 の使用

誰でもこの問題を解決するのを手伝ってもらえますか?

Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:2.5:resources (default-resources) on project plant: Error loading property file 'C:\Documents and Settings\xxxxx\My Documents\NetBeansProjects\plant\src\main\filters\${env}.properties' -> [Help 1]

To see the full stack trace of the errors, re-run Maven with the -e switch.
Re-run Maven using the -X switch to enable full debug logging.

For more information about the errors and possible solutions, please read the following articles:
[Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException 
4

1 に答える 1

1

そこにあるパスの未解決の参照:

src\main\filters\${env}.properties

Mavenプロジェクトでは、プロパティ「env」を何か、おそらく *.properties ファイル名に設定する必要があることを示唆しています。このプロパティを提供/設定していないため、そのまま残され、プロジェクトはというファイルを見つけることができません

${env}.properties

コマンド ラインから Maven を実行している場合は、任意の Java プロパティと同じプロパティを設定できます。

mvn [your normal maven arguments] -Denv=something

任意の IDE から実行している場合は、プロパティも提供する方法があると確信しています。

于 2013-08-05T17:58:15.553 に答える