Matthias: Not sure if you have your answer... We do the same: PVCS get, build, deploy (except using WSAD 4.0.3)...because of the behind the scenes manipulation that the deploy tool does we had to add an extra step for the developer to do. We created an extra folder in PVCS for them to place the WAS-friendly, generated files (ejb-jar, schema, etc) then we use the follwing target to call the deploy tool:
<target name="deploy.ejb.jar"> <echo>...Generating deploy code for ${ant.project.name}</echo> <mkdir dir="${app.module.dir}\${jndiPrefix}" /> <echo>...Creating dir ${app.module.dir}\${jndiPrefix}</echo> <property name="deployed.jar.file" value="${app.module.dir}\${jndiPrefix}\${deployed.jar.name}"/> <exec executable="${ejbdeploy}" output="${deploy.logs}\ejbdeployFor${ant.project.name}.log" failonerror="true"> <arg value="${ejb.jar.file}"/> <arg value="${deploy.working.dir}"/> <arg value="${deployed.jar.file}"/> <arg line="-cp "${tempBOJar};${tempejbJar};${tempServletJar};${build.base}\lib\xml4j.j ar ""/> <arg line="-dbvendor ${dbvendor}"/> <arg line="-novalidate"/> <arg value="-trace"/> </exec> <echo>...Finished generating deploy code for ${ant.project.name}</echo> </target> ...due to the large number of EJB projects we only call the depoly tool once and then in a separate target alter the jndi names and re-jar the ejbs. HTH, -Will -----Original Message----- From: Matthias P. [mailto:[EMAIL PROTECTED] Sent: Friday, June 06, 2003 3:28 AM To: Ant Users List Subject: RE: question regarding WSAD specific ant tasks Hi, ok, i see it. All these tasks are just task to use ant from inside wsad/eclipse. Are there other optional task for WAD 5.0, especially generating deployment code etc. without using wsad. As a configmanager i would like to check out our project from source control (PVCS Dimensions) and then compile, jar, war and ear the files. for deployment on WAD 5.0 i have to generate the deployment descriptoren etc. Thanks, Matthias > >Hi, > > > >I cant find the <projectBuild> task in the manual. Where is it > >from? I am also using wsad and wad 5 and happy for any > >specific tasks.... > > > >Matthias > > If you just put the text "projectBuild" into the search for the help, > it should be the first (and only) 100% hit. > > The ANT tasks are listed separately here: > > <WSAD5 > ROOT>\wstools\eclipse\plugins\com.ibm.etools.j2ee.ant_5.0.1\doc\index. > ROOT>ht > ml > > <= Alex => > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > -- +++ GMX - Mail, Messaging & more http://www.gmx.net +++ Bitte lächeln! Fotogalerie online mit GMX ohne eigene Homepage! --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]