Revision history:
$Log$
+ Revision 1.2 2004/12/01 18:36:00 zsalvet
+ Add component targets.
+
Revision 1.1 2004/11/22 13:21:49 dimeglio
First version of this file
<!-- component targets definitions tag = do not remove = -->
+ <target name="ws-interface" unless="setenvonly" depends="envset" >
+ <if>
+ <isset property="small.memory" />
+ <then>
+ <exec dir="${jp.subsystem.dir}.ws-interface" executable="${antExec}" failonerror="${failonerror}">
+ <arg line="${target} "-Dsmall.memory=true" "-Dbootstrap=${bootstrap}" "-Dfailonerror=${failonerror}" "-Ddo.cvs.tag=${do.cvs.tag}""/>
+ </exec>
+ </then>
+ <else>
+ <ant dir="${jp.subsystem.dir}.ws-interface"
+ target="${target}"
+ inheritall="false" />
+ </else>
+ </if>
+ </target>
+
<target name="common" unless="setenvonly" depends="envset" >
<if>
<isset property="small.memory" />
</if>
</target>
- <target name="primary" unless="setenvonly" depends="envset, common" >
+ <target name="primary" unless="setenvonly" depends="envset, ws-interface, common" >
<if>
<isset property="small.memory" />
<then>
<!-- Main proxy -->
<target name="buildmodules" depends="envset,
+ ws-interface,
common,
index,
primary">
org.glite.jp.version = HEAD
# Component dependencies tag = do not remove this line =
+org.glite.jp.ws-interface.version = HEAD
org.glite.jp.common.version = HEAD
org.glite.jp.index.version = HEAD
org.glite.jp.primary.version = HEAD
Revision history:
$Log$
+ Revision 1.2 2004/12/01 18:24:25 zsalvet
+ common, index, and primary components defined
+
Revision 1.1 2004/11/22 13:21:49 dimeglio
First version of this file
<equals arg1="${org.glite.jp.common.version}" arg2="HEAD" />
</condition>
+ <condition property="ws-interface.head">
+ <equals arg1="${org.glite.jp.ws-interface.version}" arg2="HEAD" />
+ </condition>
+
<condition property="index.head">
<equals arg1="${org.glite.jp.index.version}" arg2="HEAD" />
</condition>
<!-- component targets tag = do not remove = -->
+ <!-- ws-interface -->
+ <target name="ws-interface" depends="evaluate.cvs.tags, get.ws-interface.head, get.ws-interface.tag"/>
+ <target name="get.ws-interface.head" if="ws-interface.head">
+ <cvs-co package="org.glite.jp.ws-interface" />
+ </target>
+ <target name="get.ws-interface.tag" unless="ws-interface.head">
+ <cvs-co package="org.glite.jp.ws-interface"
+ tag="${org.glite.jp.ws-interface.version}" />
+ </target>
+
<!-- common -->
<target name="common" depends="evaluate.cvs.tags, get.common.head, get.common.tag"/>
<target name="get.common.head" if="common.head">
</target>
<!-- All project modules -->
- <target name="project" depends="common,
+ <target name="project" depends="ws-interface,
+ common,
index,
primary" />