Versions Compared

Key

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

...

Once you have the plugins, you should be able to check out get the code, build, and run the latest trunk codeMifos.

Warning

Workspace 2.0 deprecates much of this page, see Workspace 2.0 first.

About the project

  • You must do a maven build from the commandline before using WTP
  • For convenience, the project is set to build using the Eclipse Java builder, which does not use maven. If you want to update dependencies via maven or just be sure that the project is being built correctly, you must build using maven from the command line: mvn clean install - the Java builder does not completely build the project, but only builds the class files, ftl files, and properties files.
  • You can use the maven builder from inside eclipse, but be warned - it's annoying, as it touches many files, causing Eclipse to frequently pop up dialog boxes.
    • In the Navigator pane, right click on the project
    • Select Builders
    • Uncheck the Java builder to disable it.
    • Check the Maven2 builder to enable it.
    • Now you can right-click on the project, and select the M2 menu for maven goals.
  • The project uses PMD and FindBugs as poka-yoke (mistake proofing) tools to help us catch bugs before checking them into source control.

...