34 | | * Form the outline as in the previous paragraph. |
35 | | * dirs: |
36 | | * classes: contains META_INF(manifest file); the contents of /src/main/resources; the compiled classes; |
37 | | * test-classes: compiled content of /src/test |
38 | | * distrib: contains all needed files that are going to be created on the user's machine in order to have completely functional project. |
| 36 | * Form the outline as in the previous paragraph. |
| 37 | * dirs: |
| 38 | * classes: contains META_INF(manifest file); the contents of /src/main/resources; the compiled classes; |
| 39 | * test-classes: compiled content of /src/test |
| 40 | * distrib: contains all needed files that are going to be created on the user's machine in order to have completely functional project. |
| 41 | * Runtime section will look this way: |
| 42 | == Runtime Structure == |
| 43 | * For each module when built with maven a target folder is created, which has the following structure |
| 44 | ||'''/classes'''|| |
| 45 | ||'''/classes/META_INF'''||contains meta information that is needed for the .jar file to be executed|| |
| 46 | ||'''/classes/org/sophie2/[module_name]'''||contains the compiled source classes|| |
| 47 | ||'''/classes/[contents of /src/main/resources]'''||contains needed resources|| |
| 48 | ||'''/test-classes'''||includes copies of the compiled tests || |
| 49 | ||'''/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|| |
| 50 | |