Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B7B1B200C7D for ; Tue, 16 May 2017 20:33:27 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B6593160BC1; Tue, 16 May 2017 18:33:27 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 02C47160BA6 for ; Tue, 16 May 2017 20:33:26 +0200 (CEST) Received: (qmail 50219 invoked by uid 500); 16 May 2017 18:33:26 -0000 Mailing-List: contact user-help@uima.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@uima.apache.org Delivered-To: mailing list user@uima.apache.org Received: (qmail 50203 invoked by uid 99); 16 May 2017 18:33:25 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 16 May 2017 18:33:25 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 6351F18612F for ; Tue, 16 May 2017 18:33:25 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.002 X-Spam-Level: X-Spam-Status: No, score=-0.002 tagged_above=-999 required=6.31 tests=[RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id zhghaShyaaK7 for ; Tue, 16 May 2017 18:33:23 +0000 (UTC) Received: from gateway30.websitewelcome.com (gateway30.websitewelcome.com [192.185.152.11]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTPS id C998B5F567 for ; Tue, 16 May 2017 18:33:22 +0000 (UTC) Received: from cm3.websitewelcome.com (unknown [108.167.139.23]) by gateway30.websitewelcome.com (Postfix) with ESMTP id ECEA91C1D9 for ; Tue, 16 May 2017 13:33:15 -0500 (CDT) Received: from gator3253.hostgator.com ([198.57.247.217]) by cm3.websitewelcome.com with id M6ZE1v00i4i9tuE016ZFDo; Tue, 16 May 2017 13:33:15 -0500 Received: from yktgi01e0-s5.watson.ibm.com ([129.34.20.19]:40299 helo=[9.2.54.84]) by gator3253.hostgator.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.87) (envelope-from ) id 1dAhHW-000VMr-7C for user@uima.apache.org; Tue, 16 May 2017 13:33:14 -0500 Subject: Re: conversion from ECORE to UIMA - Ecore2UimaTypeSystem To: user@uima.apache.org References: From: Marshall Schor Message-ID: Date: Tue, 16 May 2017 14:33:14 -0400 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - gator3253.hostgator.com X-AntiAbuse: Original Domain - uima.apache.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - schor.com X-BWhitelist: no X-Source-IP: 129.34.20.19 X-Exim-ID: 1dAhHW-000VMr-7C X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: yktgi01e0-s5.watson.ibm.com ([9.2.54.84]) [129.34.20.19]:40299 X-Source-Auth: msa+schor.com X-Email-Count: 3 X-Source-Cap: bWlzY2hvcjttaXNjaG9yO2dhdG9yMzI1My5ob3N0Z2F0b3IuY29t archived-at: Tue, 16 May 2017 18:33:27 -0000 This missing class is part of Eclipse's emf support. See if you can locate a jar for it. For example, I went to http://search.maven.org and searched for "ecore", and found on the 4th hit org.eclipse.emf.ecore jar which has the ResourceSet class. Try including that Jar (and perhaps its dependencies, look at the POM, or just update your Maven build if you're using Maven) in your classpath. I also see this jar in my current Eclipse installation. -Marshall On 5/16/2017 10:44 AM, Luca Toldo wrote: > Dear all, > I'm trying to generate a UIMA TypeSystem from an UML project. > According to the UIMA Tutorial and Developers' Guide this should be straightforward using > java org.apache.uima.ecore.Ecore2UimaTypeSystem > > Unfortunately, however, that class does not exist anymore. > in lib/uima-examples.jar I've found the following one : > org.apache.uima.examples.xmi.Ecore2UimaTypeSystem > > however executing it results in a NoClassDefFoundError: org/eclipse/emf/ecore/resource/ResourceSet > > Unfortunately no information is provided in the UIMA SDK on how to execute that task (e.g. precise dependency list). > > Any experience / feedback on the topic is appreciated. > >