Changeset 3561
- Timestamp:
- 06/12/12 10:08:17
- Files:
-
- trunk/build.xml (modified) (1 diff)
- trunk/build/buildTools/deftasks.xml (modified) (2 diffs)
- trunk/deployment/termination/service (added)
- trunk/deployment/termination/service/build.xml (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build.xml
r3537 r3561 74 74 </target> --> 75 75 76 <target name="build-init"/> 77 76 78 <target name="build-source" depends="build-init" > 77 79 <installPom dir="${org.bedework.project.bedework}"/> trunk/build/buildTools/deftasks.xml
r3537 r3561 682 682 <macrodef name="deployTerm"> 683 683 <sequential> 684 <ant antfile="${build.dir}/../deployment/termination/webapp/build.xml" 685 target="deploy" inheritRefs="true" /> 684 <if> 685 <equals arg1="${propval.app.package.type}" arg2="service" /> 686 <then> 687 <ant antfile="${build.dir}/../deployment/termination/service/build.xml" 688 target="deploy" inheritRefs="true" /> 689 </then> 690 <else> 691 <ant antfile="${build.dir}/../deployment/termination/webapp/build.xml" 692 target="deploy" inheritRefs="true" /> 693 </else> 694 </if> 686 695 687 696 <!-- Platform specific --> … … 702 711 <target name="init" /> 703 712 704 <!-- Override this --> 705 <target name="build-init" /> 713 <!-- Override this if needed --> 714 <target name="build-init" depends="init"> 715 <resolveDependencies pomFile="pom.xml" /> 716 </target> 706 717 707 718 <!-- Override this -->
