You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by jv...@apache.org on 2002/02/22 03:13:46 UTC

cvs commit: jakarta-turbine-maven/src/templates/build build.xml

jvanzyl     02/02/21 18:13:46

  Modified:    src/templates/build build.xml
  Log:
  - using the <project-properties> task to create the references needed
    to build the project.
  
  Revision  Changes    Path
  1.5       +6 -15     jakarta-turbine-maven/src/templates/build/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-maven/src/templates/build/build.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- build.xml	21 Feb 2002 21:03:45 -0000	1.4
  +++ build.xml	22 Feb 2002 02:13:46 -0000	1.5
  @@ -37,24 +37,15 @@
       name="init">
   
       <taskdef
  -      name="create-path"
  -      classname="org.apache.maven.CreatePath">
  +      name="project-properties"
  +      classname="org.apache.maven.build.ProjectProperties">
       </taskdef>
       
  -    <taskdef
  -      name="create-patternset"
  -      classname="org.apache.maven.CreatePatternSet">
  -    </taskdef>
  -
  -    <!-- Create Classpath -->
  -    <create-path rid="classpath" descriptor="${deps}" basedir="${lib.repo}"/>
  +    <!-- This task will create the 'classpath' and 'src.set' 
  +         references required to build -->
  +         
  +    <project-properties projectDescriptor="project.xml"/>
           
  -    <!-- Source Directories -->
  -    <create-path rid="src.set" descriptor="${src.set}"/>
  -    
  -    <!-- Source Directories with Aspects -->
  -    <create-path rid="src.aspect.set" descriptor="${src.aspect.set}"/>
  -
     </target>
   
     <!-- ================================================================== -->
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>