Show
Ignore:
Timestamp:
08/13/07 12:20:44 (3 years ago)
Author:
rcmatthews
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • documents/trunk/documentation/src/app-dev/build-app.xml

    r9830 r9842  
    1414  <para>How you organise your project and its dependencies is a matter of 
    1515  personal preference, but for this section we will assume the following 
    16   directory structure, where <ital>nakedobjects-3.0</ital> is the unzipped 
    17   distribution and <ital>project/src</ital> is the directory containing the 
    18   application you are working on.</para> 
     16  directory structure, where <path><ital>nakedobjects-3.0</ital></path> is the 
     17  unzipped distribution and <path>project</path> is the directory containing 
     18  the application you are working on.</para> 
    1919 
    2020  <command-listing>nakedobjects-3.0/ 
     
    2626    src/ 
    2727    xat/ 
     28    resources/ 
    2829    config/ 
    2930    build.xml 
    3031    : 
    3132    :</command-listing> 
     33 
     34  <para>The source code for the domain objects is contained in the 
     35  <path>src</path> directory and the tests are in <path>xat</path>. Resources 
     36  to be made available via the class path (rather than loaded via the file 
     37  system) should be added to the <path>project/resources</path> directory, 
     38  while configuration files should be placed in <path>config</path>. The file 
     39  <path>build.xml</path> should be copied across from the 
     40  <path>nakedobjects-3.0/resources</path> directory.</para> 
    3241 
    3342  <heading>Compilation</heading>