great, but.. how can I use it with Maven ?

  <goal name="newMember" description="Used by new members to assemble
the project through one step">
        <echo>Downloading the Schoolbus project</echo>
        <ant:cvs
            cvsRoot="${pom.repository.cvsRoot}"
            package="${pom.repository.cvsModule}"
            dest="."
            />
        <!--attainGoal name="scm:checkout-project"/-->
        <attainGoal name="multiproject:install"/>
        <attainGoal name="multiproject:site"/>
  </goal>

the "pom.repository.cvsRoot" variable is set in the project.properties
or it is the properties inside the "<connection>" tag ?


On Sun, 7 Nov 2004 23:19:24 +0800, Corey Scott <[EMAIL PROTECTED]> wrote:
> If you are wanting to have greater control of the cvs, you might get
> better millage out of the ant:cvs task (http://ant.apache.org/manual/)
> 
> Example:
>    <ant:cvs
>        cvsRoot="${pom.repository.cvsRoot}"
>        package="${pom.repository.cvsModule}"
>        dest="${dest.dir}"
>        tag="${cvs.tag}" />
> 
> Hope this helps,
> Corey
>

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

Reply via email to