dion        2002/06/10 02:50:34

  Modified:    src/templates/build/plugins/core build.xml
  Log:
  Updated build file to stop multiple initialisations
  
  Revision  Changes    Path
  1.17      +4 -3      jakarta-turbine-maven/src/templates/build/plugins/core/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-maven/src/templates/build/plugins/core/build.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- build.xml 6 Jun 2002 15:04:00 -0000       1.16
  +++ build.xml 10 Jun 2002 09:50:34 -0000      1.17
  @@ -5,7 +5,7 @@
     <!-- ================================================================== -->
     <!-- I N I T                                                            -->
     <!-- ================================================================== -->
  -  <target name="init">
  +  <target name="init" unless="maven.init">
   
       <taskdef
         name="create-classpath"
  @@ -30,7 +30,9 @@
       <taskdef resource="maven-taskdefs.properties">
         <classpath refid="maven-classpath" />
       </taskdef>
  -    
  +  
  +    <property name="maven.init" value="true" />
  +      
       <!-- call common build file initialization to verify project, update jars
            load properties etc -->
       <maven-ant antfile="${maven.home}/plugins/core/build-init.xml"
  @@ -835,7 +837,6 @@
       <maven-ant antfile="${maven.home}/plugins/test/build.xml"
         target="test"
         inheritRefs="true"
  -      inheritAll="true"
         />
   
       <jar
  
  
  

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

Reply via email to