Eclipse Ganymedeを持っていますが、の自動コンテンツアシスト機能を使用したいと思いますant
。私はant-contrib-1.0b3.jar
私と一緒にいます。
Eclipseでタスクを含めることができる自動コンテンツアシストを使用するには、どのような構成が必要ant-contrib
ですか?
以下を使用すると、ant
ant-contribのタスクを認識できますが、コンテンツアシストが機能しませんか?
<!-- Define classpath for ant-contrib tasks -->
<path id="ant.contrib.classpath">
<fileset dir="/path/to/lib/">
<include name="ant-contrib-1.0b3.jar" />
</fileset>
</path>
<!-- Task definition -->
<taskdef resource="net/sf/antcontrib/antcontrib.properties">
<classpath refid="ant.contrib.classpath" />
</taskdef>