User: user57  
  Date: 01/10/03 13:19:03

  Modified:    jboss.net build.xml
  Log:
   o fixed local.properties install
  
  Revision  Changes    Path
  1.3       +10 -17    contrib/jboss.net/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/contrib/jboss.net/build.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build.xml 2001/10/03 13:20:30     1.2
  +++ build.xml 2001/10/03 20:19:03     1.3
  @@ -10,7 +10,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.2 2001/10/03 13:20:30 cgjung Exp $ -->
  +<!-- $Id: build.xml,v 1.3 2001/10/03 20:19:03 user57 Exp $ -->
   
   <project default="main" name="JBoss.Net">
   
  @@ -23,7 +23,7 @@
     <taskdef name="property" classname="planet57.tools.buildmagic.task.Property"/>
   
     <!-- Initialize the build system. -->
  -  <target name="init" depends="_init-prepare" unless="init.disable">
  +  <target name="init" unless="init.disable">
       <!-- Perform any setup required if we are a child of another build -->
       <call target="_init-child"/>
   
  @@ -43,6 +43,8 @@
   
       <!-- Setup the module environment. -->
       <property name="module.root" value="${basedir}"/>
  +    <available file="${module.root}/etc/local.properties-example"
  +            property="init.have-local-properties"/>
       <call target="_init-local-properties"/>
       <property file="${module.root}/local.properties"/>
       <property name="module.source" value="${module.root}/src"/>
  @@ -76,12 +78,6 @@
       <property name="init.disable" value="true"/>
     </target>
   
  -  <!-- Perform any preperation before init. -->
  -  <target name="_init-prepare">
  -    <available file="${module.root}/etc/local.properties-example"
  -            property="init.have-local-properties"/>
  -  </target>
  -
     <!-- Perform any setup required if we are a child of another build -->
     <target name="_init-child" if="init.have-parent">
       <!-- Disable the build.log, our parent will catch it -->
  @@ -353,8 +349,7 @@
        | Build all jar files.
      -->
   
  -  <target name="jars" depends="compile"  description="Build the Service
  -Archive">
  +  <target name="jars" depends="compile"  description="Build the Service Archive">
       <mkdir dir="${build.lib}"/>
   
       <jar jarfile="${build.lib}/${module.name}.sar">
  @@ -368,8 +363,8 @@
   
       <mkdir dir="${build.resources}/test/META-INF"/>
   
  -     <copy toFile="${build.resources}/test/META-INF/web-service.xml" 
  -     file="${apache.axis.root}/samples/addr/deploy.xml"/>
  +    <copy toFile="${build.resources}/test/META-INF/web-service.xml" 
  +       file="${apache.axis.root}/samples/addr/deploy.xml"/>
    
       <jar jarfile="${build.lib}/addr.wsr">
         <fileset dir="${apache.axis.root}">
  @@ -379,13 +374,11 @@
           <include name="**/*"/>
         </fileset>
       </jar>
  -
  -     <mkdir dir="${build.bin}"/>
   
  -     <copy toFile="${build.bin}/testAxis.bat" 
  -     file="${source.bin}/testAxis.bat"/>
  +    <mkdir dir="${build.bin}"/>
   
  -   
  +    <copy toFile="${build.bin}/testAxis.bat" 
  +       file="${source.bin}/testAxis.bat"/>
     </target>
   
   
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to