Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • .settings - Eclipse specific folder containing preferences for your environment
  • api - non web specific 'maven module' project
    • src
      • main - Java files in the module that are not web-specific.  These will be compiled into a distributable mymodule.jar
      • test - contains the unit test java files for the generic java classes
    • target - folder built at runtime that will contain the distributable jar file for the module
  • omod
  • .classpath - Eclipse specific file that points to the files necessary for building the omod and jar files on the fly
  • .project - Eclipse specific file containing the name and properties of your eclipse project
  • pom.xml - Maven build file.  Delegates to pom.xml files in the omod and api project

...