Code Search for Developers
 
 
  

build.xml from MASE: Agile Software Engineering at Krugle


Show build.xml syntax highlighted

<!--

File: FLICKRDESKTOP CONFIGURATION AND RUN SCRIPT 1.0
Author: Xueling Shu

Usage: Run 'ant' at the command line to print the usage information.

To use this script, the first thing to do is to download the FlickrDesktop source from CVS.

To build,run and test,you can enter on the command line:
	ant build      (compile source code)
	ant run        (run the application)
	ant superrun   (compile and run the application)
	ant unittest   (run all the junit tests)
	ant fittest    (run all the fit tests from fitnesse)
	ant supertest  (run both junit and fit tests)
	ant packageApp (create an executable jar to run FlickrDesktop)
-->


<project default="usage" basedir=".">

	<property name="src" value="src"/>
	<property name="unitTestSrc" value="tests/ca/ucalgary/cpsc/ebe/fitClipse/tests/junit"/>
	<property name="bin" value="bin"/>
	<property name="unitTestBin" value="${bin}/unitTests"/>
	<property name="junitReports" value="./junitReports"/>
	
	<!-- <path id="path.fitClipse">
		<fileset dir=".">
	    	<include name="**/*.jar" />
	    </fileset>
	</path> -->

	<target name="usage">
		<echo level="info" message="Required ANT 1.6.5+"/>
		<echo level="info" message=" "/>
		<echo level="info" message="Usage:"/>
		<echo level="info" message="ant [target] [options]"/>
		<echo level="info" message=" "/>
		<echo level="info" message="Targets:"/>
		<echo level="info" message="  usage                  Print this help message"/>
		<echo level="info" message="  build                  Compile source"/>
		<echo level="info" message="  unittest               Run junit tests"/>
		<!--<echo level="info" message="  fittest                Run all the fitnesse tests"/>
		-->
		<echo level="info" message=" "/>
	</target>

	
	
</project>



See more files for this project here

MASE: Agile Software Engineering

The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.

Project homepage: http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other

  .settings/
    org.eclipse.jdt.core.prefs
  FITResult/
    ExperimentProject.TestOne.html
    FitClipseDemo.TestColumnFixture.html
    FitClipseDemo.TestSuite.TestActionFixture.html
    FitClipseDemo.TestSuite.TestColumnFixture.html
    FitClipseDemo.TestSuite.TestDoFixture.html
    FitClipseDemo.TestSuite.TestTry.html
  FITSrc/
    ExperimentProject.TestOne.html
    FitClipseDemo.TestColumnFixture.html
    FitClipseDemo.TestSuite.TestActionFixture.html
    FitClipseDemo.TestSuite.TestColumnFixture.html
    FitClipseDemo.TestSuite.TestDoFixture.html
    FitClipseDemo.TestSuite.TestTry.html
  bin/
  lib/
    FitClipseTestRunner.jar
    fitlibrary.jar
    fitnesse.jar
  src/
    ca/
      ucalgary/
        cpsc/
          fitnessedemo/
            fittest/
              TestCalculatorMultiply.java
              TestCalculatorSubtract.java
              TestCalculatorSum.java
    calculator/
      Calculator.java
  .classpath
  .project
  build.xml