- - PR -
EclipseでAnt実行でのjunit
1
投稿者 | 投稿内容 |
---|---|
|
投稿日時: 2005-06-21 19:49
いつもお世話になっています。
調べてみたのですが、解決できないので投稿します。 Eclipse上でantを実行すると下記のようなメッセージが出ます。 コマンドプロンプトからの実行はできるので EclipseのAntのランタイムに「ANT_HOME」を指定したのですが 解決できませんでした。 タスクか何か他に設定が必要なのでしょうか? 宜しくお願いします。 「環境」 WINDOWS XP Eclipse 2.1.3 apache-ant-1.5.3-1 build.xml -- <target name="test" depends="compile"> <mkdir dir="${report.dir}"/> <junit printsummary="on" haltonfailure="no"> <classpath refid="classpath"/> <formatter type="plain"/> <batchtest fork="yes" todir="${report.dir}"> <formatter type="plain"/> <fileset dir="${test.dir}"> <patternset refid="test.pattern"/> </fileset> </batchtest> </junit> </target> -- エラーメッセージ -- test: [junit] BUILD FAILED: file:C:/**/workspace/gma/build.xml:130: Could not create task or type of type: junit. Ant could not find the task or a class this task relies upon. This is common and has a number of causes; the usual solutions are to read the manual pages then download and install needed JAR files, or fix the build file: - You have misspelt 'junit'. Fix: check your spelling. - The task needs an external JAR file to execute and this is not found at the right place in the classpath. Fix: check the documentation for dependencies. Fix: declare the task. - The task is an Ant optional task and optional.jar is absent Fix: look for optional.jar in ANT_HOME/lib, download if needed - The task was not built into optional.jar as dependent libraries were not found at build time. Fix: look in the JAR to verify, then rebuild with the needed libraries, or download a release version from apache.org - The build file was written for a later version of Ant Fix: upgrade to at least the latest release version of Ant - The task is not an Ant core or optional task and needs to be declared using <taskdef>. Remember that for JAR files to be visible to Ant tasks implemented in ANT_HOME/lib, the files must be in the same directory or on the classpath Please neither file bug reports on this problem, nor email the Ant mailing lists, until all of these causes have been explored, as this is not an Ant bug. -- |
|
投稿日時: 2005-06-21 20:29
junit.jarがANT_HOME/libに無いとかじゃないでしょうか?
#コマンドラインで動くというのであれば、環境変数のCLASS_PATHにはjunit.jarが設定してあるんじゃないかと思います。 詳しくはAntのマニュアルでJunitタスクをご確認ください。 |
|
投稿日時: 2005-06-21 23:07
Antのjunitタスクって、オプショナルじゃなかったでしょうか?
ANT_HOME/lib/ant-junit.jar ってファイルはないでしょうか?(当方 Ant1.6.x) これをクラスパスに追加すればいい気がします。 # 確か、Eclipse上で明示的にANT_HOMEなんか設定しなくてもよかったと思うのですが。 # 下手に設定するとよけいにおかしくなった気が。 |
|
投稿日時: 2005-06-21 23:10
Odakazさん
返信ありがとうございます。 コマンドラインからでは動作するので ANT_HOMEをチェックして環境変数と同じディレクトリを指定し XML関係のjarファイルを削除すると 右クリックで「ANTを実行」を選択したときに ターゲットが画面に表示されなかったと思います。 内部エラーが発生していると思われます。 はっきりと覚えていないので 明日もう一度確認してみようと思います。 |
|
投稿日時: 2005-06-22 13:20
ご回答有難う御座います。
antのpluginにjunit.jar(ant1.5.3-1)を入れると動作しました。 ただ、EclipseでANT_HOMEを選択して設定するとうまく動きませんでした。 有難う御座いました。 |
1