Hi Antoine, Thank you so much for your suggetion, it really helped me. This is what I did :
I placed the mksant.jar in my local path e.g., C:/dummy/folder/mksant.jar I placed my build file inside the directory C:/dummy/folder. and then I followed your steps : <target name="getlatestMKS"> <taskdef resource="mksant.xml"> <classpath> <pathelement location="C:/dummy/folder/mksant.jar"/> </classpath> </taskdef> </target> This mksant.xml contain a tag for loading the tasks/property file. So we have to the resource path to make it work. Once again thank you so much brother. =============================================================================== antoinell wrote: > > Hi, > > what you are missing is to add a <taskdef/> invocation in your build > file to make the ant tasks contained in mksant.jar known to your build > file. > > mksant.jar probably contains either an antlib.xml file or a property > file with the list of the ant tasks, and this must be referenced. > > Additionnally, it would be cleaner not to put this mksant.jar inside > ant_home/lib, but maybe in a lib folder below the location of your build > file ? > > So you would have something like that > > <taskdef resource="org/mks/ant/antlib.xml"> > <classpath> > <pathelement="lib/mksant.jar"/> > </classpath> > </taskdef> > > You need to change the org/mks/ant/antlib.xml part, I do not know how > this file is called in mksant.jar or if it even exists. > > Doing a jar tvf mksant.jar or opening the file in Winzip or similar will > give you an idea of what is in there (or reading the documentation) > > Hope this helps, > > Antoine > > > NR031 wrote: >> Hi, >> >> How to use mksant.jar file inside ant script. I want to connect to >> MKS >> to checkout modules. I placed this jar in my ant_home/lib folder. When i >> try >> to use the the tags such as <sicheckout>, <sicheckin>.... in my ant >> script, >> it will show failed to create a task or attribute <sicheckout>. I am new >> to >> the ant script and need help. >> >> Thanks in advance >> >> > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: user-unsubscr...@ant.apache.org > For additional commands, e-mail: user-h...@ant.apache.org > > > -- View this message in context: http://www.nabble.com/Using-mksant.jar-in-ant-script-tp22351102p22365800.html Sent from the Ant - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org