Skip to main content

Notice: This Wiki is now read only and edits are no longer 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 CVS"

(Build Instructions)
(Build Instructions)
Line 46: Line 46:
 
== Build Instructions ==
 
== Build Instructions ==
 
* Building within Eclipse:
 
* Building within Eclipse:
** The normal Project Build method will compile the source
+
** The normal project build method will compile the source
 
** How to produce a standalone jar:
 
** How to produce a standalone jar:
 
*** In Eclipse, do this:  
 
*** In Eclipse, do this:  
**** Window, Show View, Ant.  An Ant Browser appears.
+
**** 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.   
 
**** 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.
 
**** Expand the build file to expose the jar target.
**** Double-Click the jar target to build the jar.
+
**** 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
 
* Command-line build
 
** Building an Eclipse plugin
 
** Building an Eclipse plugin
Line 59: Line 62:
 
** Building a standalone jar file
 
** Building a standalone jar file
 
*** From the project directory, run "ant jar"
 
*** From the project directory, run "ant jar"
 +
** Building javadoc
 +
*** From the project directory, run "ant javadoc"

Revision as of 19:15, 8 February 2007

General CVS Information

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


IdAS Projects

The IdAS consists of multiple projects, each is held in a different CVS module

Project Module Location Eclipse PSF ViewCVS
IdAS org.eclipse.higgins/plugins/org.eclipse.higgins.idas anonymous viewcvs
committer
IdAS Test org.eclipse.higgins/plugins/org.eclipse.higgins.idas.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