Не удается установить подключаемый модуль Eclipse UIMA

Я слежу за документами на

http://uima.apache.org/downloads/releaseDocs/2.2.2-incubating/docs/html/overview_and_setup/overview_and_setup.html#ugr.ovv.eclipse_setup

когда я пытаюсь установить плагин инструментов UIMA, я получаю

Cannot complete the install because one or more required items could not be found.
  Software being installed: UIMA Tools (includes Runtime) 2.8.1 (org.apache.uima.tools.feature.group 2.8.1)
  Missing requirement: UIMA Eclipse: uimaj-ep-jcasgen 2.3.1 (org.apache.uima.jcas.jcasgenp 2.3.1) requires 'package org.eclipse.core.internal.compatibility 0.0.0' but it could not be found
  Missing requirement: Apache UIMA Eclipse: uimaj-ep-jcasgen 2.4.0 (org.apache.uima.jcas.jcasgenp 2.4.0) requires 'package org.eclipse.core.internal.compatibility 0.0.0' but it could not be found
  Missing requirement: Apache UIMA Eclipse: uimaj-ep-jcasgen 2.4.1 (org.apache.uima.jcas.jcasgenp 2.4.1) requires 'package org.eclipse.core.internal.compatibility 0.0.0' but it could not be found
  Missing requirement: Apache UIMA Eclipse: uimaj-ep-jcasgen 2.4.2 (org.apache.uima.jcas.jcasgenp 2.4.2) requires 'package org.eclipse.core.internal.compatibility 0.0.0' but it could not be found
  Missing requirement: Apache UIMA Eclipse: uimaj-ep-jcasgen 2.5.0 (org.apache.uima.jcas.jcasgenp 2.5.0) requires 'package org.eclipse.core.internal.compatibility 0.0.0' but it could not be found
  Missing requirement: Apache UIMA Eclipse: uimaj-ep-jcasgen 2.6.0 (org.apache.uima.jcas.jcasgenp 2.6.0) requires 'package org.eclipse.core.internal.compatibility 0.0.0' but it could not be found
  Missing requirement: Apache UIMA Eclipse: uimaj-ep-jcasgen 2.7.0 (org.apache.uima.jcas.jcasgenp 2.7.0) requires 'package org.eclipse.core.internal.compatibility 0.0.0' but it could not be found
  Missing requirement: Apache UIMA Eclipse: uimaj-ep-jcasgen 2.8.0 (org.apache.uima.jcas.jcasgenp 2.8.0) requires 'package org.eclipse.core.internal.compatibility 0.0.0' but it could not be found
  Missing requirement: Apache UIMA Eclipse: uimaj-ep-jcasgen 2.8.1 (org.apache.uima.jcas.jcasgenp 2.8.1) requires 'package org.eclipse.core.internal.compatibility 0.0.0' but it could not be found
  Cannot satisfy dependency:
    From: UIMA Tools (includes Runtime) 2.8.1 (org.apache.uima.tools.feature.group 2.8.1)
    To: org.apache.uima.jcas.jcasgenp 0.0.0

где я могу установить этот пакет

org.eclipse.core.internal.compatibility 0.0.0'

так что я могу потом установить

uimaj-ep-jcasgen 2.8.1 (org.apache.uima.jcas.jcasgenp 2.8.1)

Я использую Eclipse Neon и смог установить инструменты Eclipse EMF для Neon.


person AbtPst    schedule 16.08.2016    source источник
comment
org.eclipse.core.internal.compatibility был удален из Neon. Плагины, которые вы пытаетесь установить, очень старые и нуждаются в переработке.   -  person greg-449    schedule 16.08.2016
comment
имеет смысл. будет ли это работать с марсом или луной? может быть ребятам из uima нужно обновить свои инструкции   -  person AbtPst    schedule 16.08.2016
comment
установка плагина работала с Марсом, но когда я пытаюсь запустить что-либо, я получаю Error: Could not find or load main class org.apache.uima.tools.cvd.CVD   -  person AbtPst    schedule 16.08.2016
comment
или все, что связано с uima.tools, по какой-то причине недоступно. Я могу запустить uima просто отлично из терминала. только с затмением у меня проблема   -  person AbtPst    schedule 16.08.2016
comment
работает сейчас. нашел решение на https://mail-archives.apache.org/mod_mbox/uima-user/201505.mbox/%[email protected]%3E   -  person AbtPst    schedule 16.08.2016


Ответы (1)


Решил это:

  • копирование содержимого $UIMA_HOME/eclipsePlugins/* в $ECLIPSE_HOME/eclipse/plugins/
    (где $UIMA_HOME — место, где вы установили UIMA SDK, а $ECLIPSE_HOME — место, где вы установили eclipse)
  • Затем запустите eclipse с помощью "-clean".

Примечание. Использование Eclipse neon в Linux и uima 2.9.

person Roxanne    schedule 10.12.2016