Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "IdAS Registry CVS"

 
Line 67: Line 67:
  
 
[[Category:Higgins IdAS]]
 
[[Category:Higgins IdAS]]
[[Category:Higgins Developer Info]]
+
[[Category:Higgins 1.x Developer Info]]

Latest revision as of 16:30, 25 April 2011

{{#eclipseproject:technology.higgins|eclipse_custom_style.css}}

Higgins logo 76Wx100H.jpg

General CVS Information

Connection Type Committers  :ext:
Anon access  :pserver:
Host dev.eclipse.org
Repository Path /cvsroot/technology


IdAS Registry Projects

The IdAS Registry consists of two projects, one main project and one for the Test code in different CVS modules. The main project consists of three Java packages (IdAS Registry main code, Context ID code, Discovery code).

Project Module Location Eclipse PSF ViewCVS
IdAS Registry org.eclipse.higgins/plugins/org.eclipse.higgins.idas.registry anonymous viewcvs
committer
IdAS Registry Test org.eclipse.higgins/plugins/org.eclipse.higgins.idas.registry.test anonymous viewcvs
committer

Build Instructions

  • Building within Eclipse:
    • The normal project build method will compile the source
    • How to produce a standalone jar:
      • In Eclipse, do this:
        • Window, Show View, Ant. An ant browser appears.
        • Right-Click, Add Buildfiles..., browse to the buildfile (build.xml) you want to add and select it.
        • Expand the build file to expose the jar target.
        • Double-click the jar target to build the jar.
    • How to produce javadoc:
      • Follow the instructions above to add the ant buildfile to the ant browser
      • Double-click the javadoc target.
  • Command-line build
    • Building an Eclipse plugin
      • From the project directory, run "ant -DECLIPSE_HOME=<path to eclipse installation>"
      • Note that this requires an Eclipse installation
    • Building a standalone jar file
      • From the project directory, run "ant jar"
    • Building javadoc
      • From the project directory, run "ant javadoc"

Back to the top