org.eclipse.team.tests.core/build-tests.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (download) (as text) (annotate)
Mon Aug 12 18:05:21 2002 UTC (7 years, 3 months ago) by mvalenta
Branch: MAIN
CVS Tags: I20080604, I20060510, I20020304, I20050314, R3_0_2, R3_0_1, R3_3_1_1, I20040809, I200607032320, I20060605-1430, I20030306, R3_2_1, I20030205, R3_2_2, I20020909, R2_1_3, I20030304, I20050826, I20031215, I20041115, I20051211, I20051213, I20031028, R2_1_2, R2_1_1, I20090224-0800, I20060209, I20060206, I20021202, I20030218, I20021112, I20060123, Root_branch_20040402_layoutOptionsInSynchronizeAdvisor, I20021119, I20031104, I20040503, Root_branch_20040903_OutgoingCommitSets, I20031202, I20031209, I20041101, I20070316, R3_1, I20070409, I20040127, I20021216, I20021212, I20021210, I20021029, I20030312, I20021022, I20060130, I20031111, I20021015, R3_4, R3_5, mergedSyncRework_20040225, R3_0, I20040511, R3_2, R3_3, I20020924, I20070303, I20090714-0800, I20040917, Root_SynchronizeViewPageBook20031009, I20070416, I20021105, v20030310-precopyrightupdate, pre_R3_3, I20020917, I20040603, Root_branch_20031110_wvcm1, I20020826, I20060828_1701, I20030812, I20021126, I20030714, I20021008, I20021001, I20030114, I200603291800, I20030221, R3_5_1, R2_1, v20030310-postcopyrightupdate, I20090304-1015, I20090304-1010, Root_branch_20031205_synchWorkFlowEnhancements, I20050225, I20040302, I20030822, I20030806, I20030313, I20080513, I20030315, I20030314, I20030317, I20030318, I20030624, I20030708, I200602101600, I20070129, I20020812, v20060109, I20040315, v20040831, I20040319, R3_1_2, R3_1_1, I20030429, I20030107, I20031015, R3_3_1, R3_3_2, I20060116, I20030128, I200505091600, I200606051140, I20030121, R3_4_2, R3_4_1, I20040623a, I20070516, I20031007, HEAD
Branch point for: branch_20040402_layoutOptionsInSynchronizeAdvisor, R3_0_maintenance, branch_20031205_synchWorkFlowEnhancements, branch_20031110_wvcm1, branch_20040903_OutgoingCommitSets, SynchronizeViewPageBook20031009
Added script to build test plugins
<?xml version="1.0"?>
<project name="Build Team Sniff" basedir="." default="init">

  <property name="root" value="${basedir}/.."/>
  <property name="temp" value="${root}/__temp"/>
  <property name="plugins" value="${temp}/eclipse/plugins"/>

  <target name="init">
    <tstamp/>

    <delete dir="${temp}"/>
    <mkdir dir="${plugins}"/>

    <antcall target="buildPlugin">
      <param name="pluginName" value="org.eclipse.core.tests.harness" />
      <param name="jarName" value="testharness.jar" />
    </antcall>
    
    <antcall target="buildPlugin">
      <param name="pluginName" value="org.eclipse.team.tests.core" />
      <param name="jarName" value="teamtests.jar" />
    </antcall>

    <zip zipfile="${basedir}/teamSniff${DSTAMP}.zip"
       basedir="${temp}"
    />

    <delete dir="${temp}"/>
    <eclipse.refreshLocal resource="org.eclipse.team.tests.core"/>
  </target>

  <target name="buildPlugin">
    <copy todir="${plugins}/${pluginName}">
      <fileset dir="${root}/${pluginName}"/>
    </copy>
    <jar jarfile="${plugins}/${pluginName}/${jarName}"
         basedir="${plugins}/${pluginName}/bin"
    />
    <delete dir="${plugins}/${pluginName}/bin"/>
  </target>

</project>