I am getting the following error
failed to create task or type target
Linux OS
Ant Version is 1.7.1
Is there any jar that i must include in the ant library for this type?
Below is my part of my Build.xml code
<target name="wrapFiles">
<fileset dir="${proc_src_path}" id="src.sql">
<exclude name="**/.svn/**"/>
</fileset>
<echo message="Initiating Wrap" />
<echo message="${src.sql}" />
<pathconvert pathsep="," property="sql.files.present" refid="src.sql"/>
<if>
<equals arg1="${sql.files.present}" arg2="" />
<then>
<echo message="No file found. Skipping Wrapping of files." />
</then>
<else>
<echo message="Files found. Proceeding with wrapping of files" />
<foreach target="wrapFile" param="toWrap">
<path>
<fileset dir="${proc_src_path}" casesensitive="yes">
<exclude name="**/*.txt"/>
<exclude name="**/*.TXT"/>
<exclude name="**/pkg_*_spec.SQL"/>
<exclude name="**/pkg_*_spec.sql"/>
<exclude name="**/PKG_*_SPEC.sql"/>
<exclude name="**/PKG_*_SPEC.SQL"/>
<exclude name="**/*.svn/**"/>
</fileset>
</path>
</foreach>
</else>
</if>
</target>