[jira] Updated: (UIMA-1462) SimpleUimaAsService has checked in SimpleServer libraries as binaries

2009-07-29 Thread Tommaso Teofili (JIRA)

 [ 
https://issues.apache.org/jira/browse/UIMA-1462?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Tommaso Teofili updated UIMA-1462:
--

Attachment: patch1462.txt

removed dependency from jars inside project and added dependency to 
SimpleServer 2.3.0-incubating-SNAPSHOT

> SimpleUimaAsService has checked in SimpleServer libraries as binaries
> -
>
> Key: UIMA-1462
> URL: https://issues.apache.org/jira/browse/UIMA-1462
> Project: UIMA
>  Issue Type: Bug
>Affects Versions: 2.2.2S
>Reporter: Thilo Goetz
> Fix For: 2.3S
>
> Attachments: patch1462.txt
>
>
> For the upcoming release, this should be changed so it depends on the 
> SimpleServer project directly.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (UIMA-1462) SimpleUimaAsService has checked in SimpleServer libraries as binaries

2009-07-29 Thread Thilo Goetz (JIRA)

 [ 
https://issues.apache.org/jira/browse/UIMA-1462?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Thilo Goetz updated UIMA-1462:
--

Component/s: Sandbox-SimpleUimaAsService

> SimpleUimaAsService has checked in SimpleServer libraries as binaries
> -
>
> Key: UIMA-1462
> URL: https://issues.apache.org/jira/browse/UIMA-1462
> Project: UIMA
>  Issue Type: Bug
>  Components: Sandbox-SimpleUimaAsService
>Affects Versions: 2.2.2S
>Reporter: Thilo Goetz
> Fix For: 2.3S
>
> Attachments: patch1462.txt
>
>
> For the upcoming release, this should be changed so it depends on the 
> SimpleServer project directly.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (UIMA-1462) SimpleUimaAsService has checked in SimpleServer libraries as binaries

2009-07-29 Thread Tommaso Teofili (JIRA)

 [ 
https://issues.apache.org/jira/browse/UIMA-1462?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Tommaso Teofili updated UIMA-1462:
--

Attachment: patch1462b2.txt
patch1462b1.txt

Thilo, you are right for JSR-173 API, but xbean dependency cannot only be 
deleted because SimpleServer's 
configure(resultSpecXMLFile)
called in UIMAService throws XmlException.
We could get a version from central maven repo (1.0.3 is there, I can't find 
1.0) or maintain the current undesirable local lib/xbean.jar dependency.
I'm attaching both the solutions.
What do you think?

P.S.:
I also removed unused dependencies from UimaAsSerive.java

> SimpleUimaAsService has checked in SimpleServer libraries as binaries
> -
>
> Key: UIMA-1462
> URL: https://issues.apache.org/jira/browse/UIMA-1462
> Project: UIMA
>  Issue Type: Bug
>  Components: Sandbox-SimpleUimaAsService
>Affects Versions: 2.2.2S
>Reporter: Thilo Goetz
> Fix For: 2.3S
>
> Attachments: patch1462.txt, patch1462b1.txt, patch1462b2.txt
>
>
> For the upcoming release, this should be changed so it depends on the 
> SimpleServer project directly.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (UIMA-1462) SimpleUimaAsService has checked in SimpleServer libraries as binaries

2009-07-30 Thread Tommaso Teofili (JIRA)

 [ 
https://issues.apache.org/jira/browse/UIMA-1462?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Tommaso Teofili updated UIMA-1462:
--

Attachment: patch1462c2.txt
patch1462c1.txt

Here are the patches, first one for SimpleServer, second one for 
SimpleUimaAsService.


> SimpleUimaAsService has checked in SimpleServer libraries as binaries
> -
>
> Key: UIMA-1462
> URL: https://issues.apache.org/jira/browse/UIMA-1462
> Project: UIMA
>  Issue Type: Bug
>  Components: Sandbox-SimpleUimaAsService
>Affects Versions: 2.2.2S
>Reporter: Thilo Goetz
> Fix For: 2.3S
>
> Attachments: patch1462.txt, patch1462b1.txt, patch1462b2.txt, 
> patch1462c1.txt, patch1462c2.txt
>
>
> For the upcoming release, this should be changed so it depends on the 
> SimpleServer project directly.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (UIMA-1462) SimpleUimaAsService has checked in SimpleServer libraries as binaries

2009-08-04 Thread Tommaso Teofili (JIRA)

 [ 
https://issues.apache.org/jira/browse/UIMA-1462?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Tommaso Teofili updated UIMA-1462:
--

Attachment: simpleUimaAsServicePatch.txt
simpleServerDistributionPatch.txt

Point 1:
The Maven Assembly plugin can help us make the distribution.
I've attached a patch for SimpleServer to automatically use Maven Assembly 
plugin on packaging phase.
In this way, running 'mvn package' will cause the normal uima-simple-server.jar 
plus uima-simple-server-distribution.jar to be created into target directory.
The uima-simple-server-distribution.jar package will contain the mentioned jar 
dependencies inside /lib subdirectory.
Running 'mvn assembly:descriptor' you will also find a 
uima-simple-server-distribution subdirectory inside target folder mirroring the 
distribution-jar structure exploded.

P.S.:
patch contains modifies to POM and a new file distribution.xml under 
src/main/assembly for the distribution management 

Point 2:
SimpleUimaAsService POM contains SimpleServer dependency instead of binaries 
but Maven does not permit to import transitive dependencies from a POM that has 
system scoped dependencies (SimpleServer has uima-simple-serve-xbean.jar as a 
system scoped dependency), so xbean dependency (via Maven instead of binary) 
has to stay (optional) on SimpleUimaAsService POM by now.
To solve this my idea is that uima-simple-server-xbean could be converted to a 
nested SimpleServer Maven module and then pointed as a compile/runtime/test 
scoped dependency in SimpleServer itself.

> SimpleUimaAsService has checked in SimpleServer libraries as binaries
> -
>
> Key: UIMA-1462
> URL: https://issues.apache.org/jira/browse/UIMA-1462
> Project: UIMA
>  Issue Type: Bug
>  Components: Sandbox-SimpleUimaAsService
>Affects Versions: 2.2.2S
>Reporter: Thilo Goetz
> Fix For: 2.3S
>
> Attachments: patch1462.txt, patch1462b1.txt, patch1462b2.txt, 
> patch1462c1.txt, patch1462c2.txt, simpleServerDistributionPatch.txt, 
> simpleUimaAsServicePatch.txt
>
>
> For the upcoming release, this should be changed so it depends on the 
> SimpleServer project directly.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Updated: (UIMA-1462) SimpleUimaAsService has checked in SimpleServer libraries as binaries

2009-08-31 Thread Marshall Schor (JIRA)

 [ 
https://issues.apache.org/jira/browse/UIMA-1462?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marshall Schor updated UIMA-1462:
-

Affects Version/s: 2.3S
Fix Version/s: (was: 2.3S)

defer past 2.3.0.  

> SimpleUimaAsService has checked in SimpleServer libraries as binaries
> -
>
> Key: UIMA-1462
> URL: https://issues.apache.org/jira/browse/UIMA-1462
> Project: UIMA
>  Issue Type: Bug
>  Components: Sandbox-SimpleUimaAsService
>Affects Versions: 2.2.2S, 2.3S
>Reporter: Thilo Goetz
> Attachments: patch1462.txt, patch1462b1.txt, patch1462b2.txt, 
> patch1462c1.txt, patch1462c2.txt, simpleServerDistributionPatch.txt, 
> simpleUimaAsServicePatch.txt
>
>
> For the upcoming release, this should be changed so it depends on the 
> SimpleServer project directly.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.