Versions Compared

Key

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

...

No Format
<artifactId>myProject</artifactId>
<groupId>lcsim</groupId>
<currentVersion>0.1</currentVersion>
<organization>
  <name>Example Organization</name>
  <url>http://www.example.org</url>
</organization>
<description>This is an example Maven project.</description>
<shortDescription>Maven<shortDescription>Example Maven Project<project</shortDescription>
<url>http://www.example.org/myProject</url>
<issueTrackingUrl>http://www.example.org/myProject/bugs</issueTrackingUrl>
<repository>
  <connection>scm:cvs:pserver:anonymous@cvs.example.org:/cvs/example:myProject</connection>
</repository>
<name>myProject</name>
<package>org.lcsim</package>
<inceptionYear>2005</inceptionYear>

...

No Format
<dependency>
  <groupId>lcsim</groupId>
  <artifactId>lcsim</artifactId>
  <version>0.9</version>
  <url>http://www.lcsim.org</url>
</dependency>

The org.lcsim JAR is not currently maintained as a downloadable JAR filedependency. Each project user should needs to compile and build this program themselves in order to install it to the local repository.

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.

Basic Build Command

The project can be build from the command line with this simple command.

...