leif        2003/07/31 23:22:09

  Modified:    instrument-manager build.xml
  Log:
  Fix a problem where the altrmi connector was not being included in the jar when
  build from the root target.  Not sure when that got broken ...
  
  Revision  Changes    Path
  1.45      +8 -6      avalon-excalibur/instrument-manager/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/avalon-excalibur/instrument-manager/build.xml,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- build.xml 24 Jul 2003 16:15:15 -0000      1.44
  +++ build.xml 1 Aug 2003 06:22:09 -0000       1.45
  @@ -40,11 +40,6 @@
           <ant antfile="${depchecker.prefix}/depchecker.xml" target="checkCommon"/>
           <ant antfile="${depchecker.prefix}/depchecker.xml" target="checkFramework"/>
           <ant antfile="${depchecker.prefix}/depchecker.xml" 
target="checkInstrument"/>
  -
  -        <available classname="org.apache.altrmi.server.ServerException"
  -            property="altrmi.present">
  -            <classpath refid="project.class.path"/>
  -        </available>
       </target>
   
       <target name="dependencies-test" depends="dist-jar, dependencies"
  @@ -54,7 +49,14 @@
           <ant antfile="${depchecker.prefix}/depchecker.xml" target="checkJUnit"/>
       </target>
       
  -    <target name="warn-altrmi" depends="dependencies" unless="altrmi.present">
  +    <target name="check-altrmi" depends="dependencies">
  +        <available classname="org.apache.altrmi.server.ServerException"
  +            property="altrmi.present">
  +            <classpath refid="project.class.path"/>
  +        </available>
  +    </target>
  +    
  +    <target name="warn-altrmi" depends="check-altrmi" unless="altrmi.present">
           <echo 
message="**********************************************************************"/>
           <echo message="WARNING - Version ${altrmi.version} of the altrmi libraries 
could not "/>
           <echo message="          be found, the altrmi connector will be missing 
from the jar "/>
  
  
  

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

Reply via email to