Changeset 2457
- Timestamp:
- 09/17/08 17:24:10 (4 months ago)
- Location:
- trunk/otis.test
- Files:
-
- 1 added
- 2 modified
-
.externalToolBuilders/getOtisTestWar.launch (modified) (1 diff)
-
TEST-org.bandit.otis.test.SampleDeployment.xml (added)
-
build.xml (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/otis.test/.externalToolBuilders/getOtisTestWar.launch
r2454 r2457 18 18 <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="otis.test"/> 19 19 <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"/> 21 21 <booleanAttribute key="org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED" value="true"/> 22 22 <stringAttribute key="process_factory_id" value="org.eclipse.ant.ui.remoteAntProcessFactory"/> -
trunk/otis.test/build.xml
r2451 r2457 63 63 </target> 64 64 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 66 70 <junit fork="yes" printsummary="withOutAndErr"> 67 71 <formatter type="xml"/> 68 <test name="org.bandit.otis.test.SampleDeployment" todir="${junit.output.dir}"/>72 <test name="org.bandit.otis.test.SampleDeployment" /> 69 73 <classpath refid="project.classpath"/> 70 74 </junit> 71 75 </target> 76 77 <target name="null" /> 72 78 73 79 <target name="clean"> … … 88 94 </target> 89 95 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 90 104 </project>