Jenkins build is unstable: UIMA-uimaFIT_java8 #74

2016-10-20 Thread Apache Jenkins Server
See

Jenkins build is unstable: UIMA-uimaFIT_java8 » Apache UIMA uimaFIT - Legacy uimaFIT support #74

2016-10-20 Thread Apache Jenkins Server
See

Jenkins build is unstable: UIMA-uimaFIT_java8 » Apache UIMA uimaFIT - Spring integration #74

2016-10-20 Thread Apache Jenkins Server
See

Jenkins build is unstable: UIMA-uimaFIT_java8 » Apache UIMA uimaFIT - Examples #74

2016-10-20 Thread Apache Jenkins Server
See

Jenkins build is unstable: UIMA-uimaFIT_java8 » Apache UIMA uimaFIT - Core #74

2016-10-20 Thread Apache Jenkins Server
See

Jenkins build is unstable: UIMA-uimaFIT #255

2016-10-20 Thread Apache Jenkins Server
See

Jenkins build is unstable: UIMA-uimaFIT » Apache UIMA uimaFIT - Spring integration #255

2016-10-20 Thread Apache Jenkins Server
See

Jenkins build is unstable: UIMA-uimaFIT » Apache UIMA uimaFIT - Legacy uimaFIT support #255

2016-10-20 Thread Apache Jenkins Server
See

Jenkins build is unstable: UIMA-uimaFIT » Apache UIMA uimaFIT - Examples #255

2016-10-20 Thread Apache Jenkins Server
See

Jenkins build is unstable: UIMA-uimaFIT » Apache UIMA uimaFIT - Core #255

2016-10-20 Thread Apache Jenkins Server
See

Re: messed up the impl of UIMA-2977 - calling destroy() method on External Resources

2016-10-20 Thread Marshall Schor
I tried it - you are correct. -Marshall On 10/20/2016 3:29 PM, Richard Eckart de Castilho wrote: > On 20.10.2016, at 21:27, Marshall Schor wrote: >> The interesting part is the Java type of the returned value - it is >> specified as >> >> Class >> >> which will throw a cast exception if the imp

[jira] [Commented] (UIMA-2903) List resources in a ResourceManager / remove hack in uimaFIT

2016-10-20 Thread Marshall Schor (JIRA)
[ https://issues.apache.org/jira/browse/UIMA-2903?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15593108#comment-15593108 ] Marshall Schor commented on UIMA-2903: -- I added an api to ResourceManager and Resource

[jira] [Updated] (UIMA-2903) List resources in a ResourceManager / remove hack in uimaFIT

2016-10-20 Thread Marshall Schor (JIRA)
[ https://issues.apache.org/jira/browse/UIMA-2903?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marshall Schor updated UIMA-2903: - Fix Version/s: 2.9.1SDK 3.0.0SDKexp > List resources in a ResourceManager / remo

[jira] [Resolved] (UIMA-2977) destroy method of shared resources never called

2016-10-20 Thread Marshall Schor (JIRA)
[ https://issues.apache.org/jira/browse/UIMA-2977?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marshall Schor resolved UIMA-2977. -- Resolution: Fixed > destroy method of shared resources never called > ---

Re: messed up the impl of UIMA-2977 - calling destroy() method on External Resources

2016-10-20 Thread Richard Eckart de Castilho
The uimaFIT ExternalResourceFactoryTest has examples of resources that derive from Resource and others that derive from SharedResourceObject. Cheers, -- Richard https://svn.apache.org/repos/asf/uima/uimafit/trunk/uimafit-core/src/test/java/org/apache/uima/fit/factory/ExternalResourceFactoryTest.

Re: messed up the impl of UIMA-2977 - calling destroy() method on External Resources

2016-10-20 Thread Richard Eckart de Castilho
On 20.10.2016, at 21:27, Marshall Schor wrote: > > The interesting part is the Java type of the returned value - it is specified > as > > Class > > which will throw a cast exception if the implementing class can't be cast to > Resource. I believe due to type erasure, this does not throw a ca

Re: messed up the impl of UIMA-2977 - calling destroy() method on External Resources

2016-10-20 Thread Marshall Schor
The evidence that implementation classes for External Resource must implement Resource comes from the line in resolveAndValidateResourceDependencies, where it is seeing if the interface specified in the dependency is implemented by the named External resource. In the process of doing this, the cod

[jira] [Comment Edited] (UIMA-2977) destroy method of shared resources never called

2016-10-20 Thread Marshall Schor (JIRA)
[ https://issues.apache.org/jira/browse/UIMA-2977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15592012#comment-15592012 ] Marshall Schor edited comment on UIMA-2977 at 10/20/16 7:19 PM: -

Re: messed up the impl of UIMA-2977 - calling destroy() method on External Resources

2016-10-20 Thread Marshall Schor
Well, now further up the learning curve. I was mislead by finding some examples of External Resource impl which implemented SharedResourceObject, but did not implement Resource. More careful reading of the code shows it assumes that resource impls *are* instances of Resource. So- back to work..

Build failed in Jenkins: UIMA-uimaFIT #254

2016-10-20 Thread Apache Jenkins Server
See -- [...truncated 2671 lines...] [INFO] Downloading: http://repository.apache.org/snapshots/org/apache/uima/uimaj-core/2.9.1-SNAPSHOT/uimaj-core-2.9.1-20161020.160213-14.jar [INFO] Downloaded: http://rep

Build failed in Jenkins: UIMA-uimaFIT_java8 #73

2016-10-20 Thread Apache Jenkins Server
See -- [...truncated 685 lines...] [INFO] Apache UIMA uimaFIT - Spring integration [INFO] Apache UIMA uimaFIT - Maven Plugin [INFO] Apache UIMA uimaFIT - Legacy uimaFIT support [INFO] Apache UIMA uimaFIT

Build failed in Jenkins: UIMA-uimaFIT » Apache UIMA uimaFIT - Core #254

2016-10-20 Thread Apache Jenkins Server
See -- [...truncated 49 lines...] [INFO] Downloaded: http://repo1.maven.org/maven2/aopalliance/aopalliance/1.0/aopalliance-1.0.pom (363 B at 59.1 KB/sec) [INFO] Downloading: h

Build failed in Jenkins: UIMA-uimaFIT_java8 » Apache UIMA uimaFIT - Core #73

2016-10-20 Thread Apache Jenkins Server
See -- [INFO] [INFO] [INFO]

messed up the impl of UIMA-2977 - calling destroy() method on External Resources

2016-10-20 Thread Marshall Schor
I had an incorrect understanding of the UIMA model for this, and confused an instance of Resource with an instance of its implementation. A Resource in UIMA is an Interface implemented by framework code parts that are specializations for the many kinds of resources managed by UIMA. These resource

[jira] [Reopened] (UIMA-2977) destroy method of shared resources never called

2016-10-20 Thread Marshall Schor (JIRA)
[ https://issues.apache.org/jira/browse/UIMA-2977?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marshall Schor reopened UIMA-2977: -- due to confusion between Resource and resource Implementation. Resource implements destroy(), but t

[jira] [Comment Edited] (UIMA-2903) List resources in a ResourceManager / remove hack in uimaFIT

2016-10-20 Thread Marshall Schor (JIRA)
[ https://issues.apache.org/jira/browse/UIMA-2903?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15591852#comment-15591852 ] Marshall Schor edited comment on UIMA-2903 at 10/20/16 2:32 PM: -

[jira] [Resolved] (UIMA-2977) destroy method of shared resources never called

2016-10-20 Thread Marshall Schor (JIRA)
[ https://issues.apache.org/jira/browse/UIMA-2977?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marshall Schor resolved UIMA-2977. -- Resolution: Fixed Fix Version/s: 2.9.1SDK > destroy method of shared resources never calle

[jira] [Commented] (UIMA-2903) List resources in a ResourceManager / remove hack in uimaFIT

2016-10-20 Thread Marshall Schor (JIRA)
[ https://issues.apache.org/jira/browse/UIMA-2903?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15591852#comment-15591852 ] Marshall Schor commented on UIMA-2903: -- UIMA-5148 will change the External Resources i

[jira] [Updated] (UIMA-5148) External Resources not given creating ResourceManager

2016-10-20 Thread Marshall Schor (JIRA)
[ https://issues.apache.org/jira/browse/UIMA-5148?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marshall Schor updated UIMA-5148: - Summary: External Resources not given creating ResourceManager (was: External Resources not given

[jira] [Created] (UIMA-5148) External Resources not given creating Resource

2016-10-20 Thread Marshall Schor (JIRA)
Marshall Schor created UIMA-5148: Summary: External Resources not given creating Resource Key: UIMA-5148 URL: https://issues.apache.org/jira/browse/UIMA-5148 Project: UIMA Issue Type: Bug

[jira] [Commented] (UIMA-5115) uv3 select() api for iterators and streams over CAS contents

2016-10-20 Thread JIRA
[ https://issues.apache.org/jira/browse/UIMA-5115?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15591065#comment-15591065 ] Peter Klügl commented on UIMA-5115: --- Sorry, I haven't found the time lately to follow yo

Re: Problem with UIMA Ruta Workbench

2016-10-20 Thread Peter Klügl
Hi, there is a problem with a preference ("noVM") which is falsely activated in the 2.5.0 release. As a result, the Workbench seems not compatible with the launcher. There is a issue for this: https://issues.apache.org/jira/browse/UIMA-5140 Deactivating the preference should fix your problem. I