Changes between Version 20 and Version 21 of PLATFORM_STRUCTURE


Ignore:
Timestamp:
12/04/08 18:58:08 (16 years ago)
Author:
kyli
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PLATFORM_STRUCTURE

    v20 v21  
    2828== Runtime Structure == 
    2929 * For each module when built with maven a target folder is created, which has the following structure 
    30 ||'''/classes'''|| 
    31 ||'''/classes/META_INF'''||contains meta information that is needed for the .jar file to be executed|| 
    32 ||'''/classes/org/sophie2/[module_name]'''||contains the compiled source classes|| 
    33 ||'''/classes/[contents of /src/main/resources]'''||contains needed resources|| 
    34 ||'''/test-classes'''||includes copies of the compiled tests || 
    35 ||'''/distrib'''||contains the files that will be copied on the user's machine during the setup process and will be enough for the project to be completely functional|| 
     30||'''target/'''|| contains the .jar files, which are packaged fully-functional modules (without the tests) || 
     31||'''target/classes'''||  
     32||'''target/classes/META_INF'''||contains meta information that is needed for the .jar file to be executed|| 
     33||'''target/classes/org/sophie2/ [module_name]'''||contains the compiled source classes|| 
     34||'''target/classes/[contents of /src/main/resources]'''||contains needed resources|| 
     35||'''target/test-classes'''||includes copies of the compiled tests || 
     36||'''target/distrib'''||contains the files that will be copied on the user's machine during the setup process and will be enough for the project to be completely functional||