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