Changeset 2457

Show
Ignore:
Timestamp:
09/17/08 17:24:10 (4 months ago)
Author:
jimse
Message:

fixed launcher (maybe)

Location:
trunk/otis.test
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/otis.test/.externalToolBuilders/getOtisTestWar.launch

    r2454 r2457  
    1818<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="otis.test"/> 
    1919<stringAttribute key="org.eclipse.ui.externaltools.ATTR_LOCATION" value="${workspace_loc:/otis.test/build.xml}"/> 
    20 <stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value="full,incremental,auto,clean"/> 
     20<stringAttribute key="org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS" value="incremental,auto,clean"/> 
    2121<booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/> 
    2222<stringAttribute key="process_factory_id" value="org.eclipse.ant.ui.remoteAntProcessFactory"/> 
  • trunk/otis.test/build.xml

    r2451 r2457  
    6363    </target> 
    6464 
    65         <target name="startOTIS" depends="getwar,compile"> 
     65        <target name="startOTIS" depends="-init"> 
     66                <property name="wartarget" value="getwar" /> 
     67                <available file="${builddir}/${war.name.prefix}.war" property="wartarget" value="null"></available> 
     68                <antcall target="${wartarget}" /> 
     69                 
    6670        <junit fork="yes" printsummary="withOutAndErr"> 
    6771            <formatter type="xml"/> 
    68             <test name="org.bandit.otis.test.SampleDeployment" todir="${junit.output.dir}"/> 
     72            <test name="org.bandit.otis.test.SampleDeployment" /> 
    6973            <classpath refid="project.classpath"/> 
    7074        </junit> 
    7175    </target> 
     76         
     77        <target name="null" /> 
    7278 
    7379        <target name="clean"> 
     
    8894        </target> 
    8995         
     96        <target name="tar"> 
     97                <tar destfile="${builddir}/otis-test-1.0.0.tar" basedir="../" 
     98                        includes="otis/**,otis.test/**" 
     99                        excludes="otis.test/build/otis-test-1.0.0.tar" > 
     100                         
     101                </tar> 
     102        </target> 
     103         
    90104</project>