Versions Compared

Key

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

...

No Format
cvs -d :pserver:anonymous@cvs.freehep.org:/cvs/lcd lcsim
cd lcsim
cp project.xml maven.xml project.properties ..
cd ..
rm -rf lcsim

Customize the following information in project.xml for your project.

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

The After copying these files from the org.lcsim checkout, the following lines should be inserted into project.xml to make it depend on org.lcsim, itself.

...