python & ant
hey folks I downloaded a separate jar file (pyAntTasks.jar) to enable me to run python scripts using ant.... i have placed this jar file in the ant lib folder & also pointed the classpath towrds this jay
my build script looks as follows:
<project>
<target name = "python">
<py-run script="/client_local/basictest/bimcello.py" python="/proj/wcs/bin/python" optimize="1">
<arg value="/clinet_local/basictest/bim.cfg"/>
</py-run>
</target>
</project>
however when i run ant i receive the follwoing error message:::
Coult not create task or type of type: py-run
is there something i have forgotten to do to enable to find this jar file to run a python script?...should there be extra settings set in build.xml?....do i need other jar files?
thanks in advance
Rob

