You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by hari ramasubbu <ko...@yahoo.com> on 2001/08/15 00:46:54 UTC

ant and Clearcase checkin

Hi all

I'm trying to use ant with clearcase to checkin a
file.But i get this error inspite of me having the
optional.jar in my lib dirctory.

BUILD FAILED

D:\quality\build\test.xml:3: Could not create task of
type: CCCheckin. Common solutions are to use taskdef
to declare your task, or, if this is an optional task,
to put the optional.jar in the lib directory of your
ant installation (ANT_HOME).

-------here is the test code.----------
<project name="mail" default="test" basedir=".">
	<target name="test" >	
	<CCCheckin viewpath="D:\test\test.txt"
comment="test">
	</CCCheckin>	
	</target>
</project>