You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hivemind.apache.org by jc...@apache.org on 2005/05/04 18:00:56 UTC

cvs commit: jakarta-hivemind/examples build.xml

jcarman     2005/05/04 09:00:56

  Modified:    examples build.xml
  Log:
  Examples won't compile.
  PR: HIVEMIND-113
  
  Revision  Changes    Path
  1.14      +10 -2     jakarta-hivemind/examples/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-hivemind/examples/build.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- build.xml	1 Mar 2005 20:40:10 -0000	1.13
  +++ build.xml	4 May 2005 16:00:56 -0000	1.14
  @@ -48,7 +48,16 @@
        <fileset dir="${ant.home}/lib" includes="*.jar"/>
     </path>
     
  -  <target name="compile-dependencies">
  +  <target name="check-framework-built">
  +  	<available file="${project.target.dir}/hivemind-${project.version}.jar" property="framework-built" />
  +  </target>
  +  	
  +  <target name="build-framework" unless="framework-built" depends="check-framework-built">
  +  	<echo message="Building HiveMind framework..." />
  +    <ant antfile="../framework/build.xml" inheritall="false" />
  +  </target>
  +	
  +  <target name="compile-dependencies" depends="build-framework">
       <ibiblio-dependency artifact="geronimo-spec-ejb" version="1.0-M1" group="geronimo-spec"/>
       <ibiblio-dependency artifact="spring-full" version="1.0.1" group="springframework"/>
       <ibiblio-dependency artifact="commons-logging" version="1.0.3" group="commons-logging"/>
  @@ -56,7 +65,6 @@
       <ibiblio-dependency artifact="javassist" version="${javassist.version}" group="javassist" use="run"/>
       <ibiblio-dependency artifact="oro" version="2.0.6" group="oro" use="run"/>
       <ibiblio-dependency artifact="easymock" version="1.1" group="easymock" use="test"/>
  -    
       <project-dependency artifact="hivemind"/>
     </target>
     
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: hivemind-cvs-unsubscribe@jakarta.apache.org
For additional commands, e-mail: hivemind-cvs-help@jakarta.apache.org