Changes between Version 15 and Version 16 of PLUGIN_MODULE_STRUCTURE_R0


Ignore:
Timestamp:
09/29/08 17:26:35 (17 years ago)
Author:
Tanya
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PLUGIN_MODULE_STRUCTURE_R0

    v15 v16  
    3838 
    3939= Design = 
     40 * There is a '''pom.xml''' file at the top level of the project. 
     41 * The modules will be in the directory '''modules/''' which is also at the top level of the project. 
     42 * Each module for example '''org.sophie2.author''' with path '''modules/org.sophie2.author''' consists of: 
     43  * dir '''src/''' 
     44   * src/main/java -> Application/Library sources 
     45   * src/main/resources -> Application/Library resources 
     46   * src/main/assembly -> Assembly descriptors 
     47   * src/test/java -> Test sources 
     48   * src/test/resources -> Test resources 
     49  * dir '''target/''' 
     50   * dir '''target/classes''' where .class files are. 
     51  * file '''plugin.xml''' 
     52  * file '''pom.xml''' 
     53  * '''org.sophie2.author''' and '''org.sophie2.reader''' should have '''boot.properties''' file in src/main/resources 
     54 * file '''pom.xml''' 
    4055 
    4156= Implementation =