Hi together

I want to build my project in this manner:
1) Clean checkout from CVS
2) Start something like maven makeMyCoolApp
3) Receive my wonderful application somewhere

the first job of the makeMyCoolApp goal is to tag the checked out
version.

I tried it with this goal
<goal name="vega:tagAll">
        <u:tokenize var="tokenizedSCM" delim=":">
                ${pom.repository.connection}
        </u:tokenize>
        <cvs cvsroot="${tokenizedSCM[2]}"
                package="${tokenizedSCM[3]}"
                command="tag maventest5"/>
</goal>

It would work, but the CVS task from ant is run in the wrong directory.
(should be /projects/ but is /projects/MyProject)


How could I change the working directory for the cvs call?


Thanks
Martin

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to