You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

  1. Use the SVN plugin for Eclipse (get it here: http://subclipse.tigris.org ).
  2. Open the view: SVN Repository, and add the URL location:

    https://svn.apache.org/repos/asf/incubator/uima/uimaj/trunk

    Note: the website is under .../incubator/uima/site

    Note: for readonly access, you can use http: instead of https:

  3. Expand this to see the projects. Select the one(s) you want, and right-click, and say "checkout".
  4. Choose "Checkout as a project in the workspace"

This will create an Eclipse simple project. To convert this to a Java project with the right class path dependencies, set from the maven pom:

  • open a commmand line window,
  • cd to the project directory, and
  • run the command "mvn eclipse:eclipse". (Note: this works for Java projects, but hasn't been tried for eclipse plugins or the docbook / website.)

  • Alternatively, you can tell the checkout UI to use the Eclipse new project wizard. If you do this, you have to do many things manually:
    In that wizard, which runs repeatedly for each project, specify you want to create
    • a Java project for the Java projects,
    • a plugin project for the uimaj-ep-xxxx projects, and
    • a "simple" project for the uima-docbooks, uimaj, and uimaj-distr.

      Also, for Java projects, make the project depend on the proper other projects (look in the pom for this info), and set up the output folders to be stored in /target (not /bin).

Note: Do not extract the uimaj-ep-runtime project, or if you do, close that project in Eclipse. Otherwise, Eclipse will attempt to use it to find the UIMA runtime for the Eclipse plugins that need this, and things will fail because this project doesn't actually have the runtime in it (left out to avoid duplicating Jars).

  • No labels