Code Search for Developers
 
 
  

build.xml from MASE: Agile Software Engineering at Krugle


Show build.xml syntax highlighted

<?xml version="1.0" encoding="utf-8" ?>
<project name="build" default="compile" basedir=".">
  <description>
    build build file.  This is used to package up your project as a jar,
    if you want to distribute it.  This isn't needed for normal operation.
  </description>

  <!-- set classpath -->
  <path id="project.class.path">
    <pathelement path="${java.class.path}/"/>
    <pathelement path="C:/Archive/gwt-windows-1.2.22/gwt-windows-1.2.22/gwt-user.jar"/>
    <!-- Additional dependencies (such as junit) go here -->
  </path>

  <target name="compile" description="Compile src to bin">
    <mkdir dir="bin"/>
    <javac srcdir="src:test" destdir="bin" includes="**" debug="on" debuglevel="lines,vars,source" source="1.4">
      <classpath refid="project.class.path"/>
    </javac>
  </target>

  <target name="package" depends="compile" description="Package up the project as a jar">
    <jar destfile="build.jar">
      <fileset dir="bin">
        <include name="**/*.class"/>
      </fileset>
      <!-- Get everything; source, modules, html files -->
      <fileset dir="src">
        <include name="**"/>
      </fileset>
      <fileset dir="test">
        <include name="**"/>
      </fileset>
    </jar>
  </target>

  <target name="clean">
    <!-- Delete the bin directory tree -->
    <delete file="build.jar"/>
    <delete>
      <fileset dir="bin" includes="**/*.class"/>
    </delete>
  </target>

  <target name="all" depends="package"/>

</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

  lib/
    distributed-persister.jar
    gwt-dev-windows.jar
    gwt-ll.dll
    gwt-servlet.jar
    gwt-user.jar
    junit-4.1.jar
    swt-win32-3235.dll
  src/
    ucalgary/
      ebe/
        webui/
          client/
            data/
              BacklogWeb.java
              IterationWeb.java
              ProjectWeb.java
              StoryCardWeb.java
            ui/
              CreateIterationDialogBox.java
              CreateProjectDialogBox.java
              CreateStoryCardDialogBox.java
              FloatTextBoxWithID.java
              ImageWithID.java
              ProjectListBox.java
              ProjectWhiteBoard.java
              StoryCardGrid.java
              StoryCardParentListBox.java
              TextBoxWithID.java
              TimestampTextBoxWithID.java
              WebUIMenu.java
            AgilePlannerWebUI.java
            WebUI2ServiceConnection.java
            WebUIDataChangeListener.java
          public/
            images/
              Start.gif
              ebe_logo.gif
              edit_icon.gif
              gray_gradient.gif
              icon_agileplanner.gif
              icon_agileplanner_new.gif
              icon_agileplanner_open.gif
              icon_arrange.gif
              icon_arrange_iter_story.gif
              icon_arrange_story.gif
              icon_complete.gif
              icon_delete.gif
              icon_detail_link.gif
              icon_find.gif
              icon_in_progress.gif
              icon_iteration.gif
              icon_minus.gif
              icon_new_project.gif
              icon_new_story.gif
              icon_plus.gif
              icon_product_backlog.gif
              icon_project.gif
              mouse.gif
              pagination_update.gif
              sample.gif
            AgilePlannerWebUI.css
            AgilePlannerWebUI.html
          server/
            service/
              AgilePlannerWebUIService.java
              AgilePlannerWebUIServiceAsync.java
            AgilePlannerWebUIServiceImpl.java
          AgilePlannerWebUI.gwt.xml
  test/
    webui/
      AgilePlannerWebUITest.java
  .classpath
  .project
  AgilePlannerWebUI-compile.cmd
  AgilePlannerWebUI-shell.cmd
  AgilePlannerWebUI.launch
  build.xml
  default.xml