Versions Compared

Key

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

...

Maven can be used as the build system for your project. It automates most of the low-level details of dependencies and building for Java projects. For instance, it can automatically download external JARs required by your project. The org.lcsim project uses this tool for its build system, as well.

Tip
titleSource Control

It is always a good idea to store your projects in a source control system, such as CVS. Contact your local system administrator for instructions on setting up a module for your project.

Directory Setup

Create a directory for your project and go into it.

...

No Format
mkdir -p src/org/lcsim

A directory for test directory cases should also be created.

No Format
mkdir -p test/org/lcsim
Tip
titleSource Control
It is always a good idea to store your projects in a source control system, such as CVS. Contact your local system administrator for instructions on setting up a module for your project.

Build Files

The project's root directory needs to contain three Maven configuration files.

...