(uima-ruta) branch main updated (932b5e72 -> c22e520c)

2024-03-30 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 932b5e72 Merge pull request #163 from apache/no-issue-fix-versions
 add 2478bd54 no issue: cleanup
 add b7b877dc Merge pull request #164 from apache/no-issue-fix-pom-3.4.x
 add 6c423d4e Issue #165: Apache UIMA Ruta 3.4.1
 add 68e2f261 [maven-release-plugin] prepare release ruta-3.4.1
 add 722c646b [maven-release-plugin] prepare for next development iteration
 add 0658db1e Merge pull request #166 from 
apache/release/165-Apache-UIMA-Ruta-3.4.1
 add 25d42d6c Merge branch 'maintenance/3.4.x' into 
no-issue-merge-3.4.x-after-release
 new c22e520c Merge pull request #167 from 
apache/no-issue-merge-3.4.x-after-release

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASE_NOTES.md| 20 ++--
 ruta-parent/pom.xml |  4 ++--
 2 files changed, 8 insertions(+), 16 deletions(-)



(uima-ruta) 01/01: Merge pull request #167 from apache/no-issue-merge-3.4.x-after-release

2024-03-30 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit c22e520ca79353470e1f4ef24e0af64ef4e0bb38
Merge: 932b5e72 25d42d6c
Author: Richard Eckart de Castilho 
AuthorDate: Sat Mar 30 08:21:51 2024 +0100

Merge pull request #167 from apache/no-issue-merge-3.4.x-after-release

No issue merge 3.4.x after release

 RELEASE_NOTES.md| 20 ++--
 ruta-parent/pom.xml |  4 ++--
 2 files changed, 8 insertions(+), 16 deletions(-)



(uima-ruta) branch no-issue-merge-3.4.x-after-release deleted (was 25d42d6c)

2024-03-30 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch no-issue-merge-3.4.x-after-release
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


 was 25d42d6c Merge branch 'maintenance/3.4.x' into 
no-issue-merge-3.4.x-after-release

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(uima-uimaj) 01/01: Issue #369: Move isTypeName and isFeatureName to public API

2024-03-24 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch 
feature/369-Move-isTypeName-and-isFeatureName-to-public-API
in repository https://gitbox.apache.org/repos/asf/uima-uimaj.git

commit d0025d2c1ee05f717edf281d1abad987a3d4d05f
Author: Richard Eckart de Castilho 
AuthorDate: Sun Mar 24 16:40:01 2024 +0100

Issue #369: Move isTypeName and isFeatureName to public API

- Moved the two methods to the public TypeSystemUtil class
- Deprecate them in the old place and mark them for removal in next major 
version
---
 .../org/apache/uima/cas/impl/TypeSystemUtils.java  | 83 +-
 .../java/org/apache/uima/util/TypeSystemUtil.java  | 73 +++
 2 files changed, 108 insertions(+), 48 deletions(-)

diff --git 
a/uimaj-core/src/main/java/org/apache/uima/cas/impl/TypeSystemUtils.java 
b/uimaj-core/src/main/java/org/apache/uima/cas/impl/TypeSystemUtils.java
index 35070e247..bde4ade3a 100644
--- a/uimaj-core/src/main/java/org/apache/uima/cas/impl/TypeSystemUtils.java
+++ b/uimaj-core/src/main/java/org/apache/uima/cas/impl/TypeSystemUtils.java
@@ -21,10 +21,10 @@ package org.apache.uima.cas.impl;
 import java.util.ArrayDeque;
 import java.util.Deque;
 import java.util.List;
-import java.util.StringTokenizer;
 
 import org.apache.uima.cas.Type;
 import org.apache.uima.cas.TypeSystem;
+import org.apache.uima.util.TypeSystemUtil;
 
 /**
  * Type Utilities - all static, so class is abstract to prevent creation Used 
by Feature Path
@@ -233,40 +233,43 @@ public abstract class TypeSystemUtils {
 public void setErrorPosition(int errorPosition) {
   this.errorPosition = errorPosition;
 }
-
   }
 
+  /**
+   * @deprecated Use {@link TypeSystemUtil#isFeatureName} instead
+   */
+  @SuppressWarnings("javadoc")
+  @Deprecated
   public static boolean isIdentifier(String s) {
-if (s == null) {
-  return false;
-}
-final int len = s.length();
-if (len == 0) {
-  return false;
-}
-int pos = 0;
-// Check that the first character is a letter.
-if (!isIdentifierStart(s.charAt(pos))) {
-  return false;
-}
-++pos;
-while (pos < len) {
-  if (!isIdentifierChar(s.charAt(pos))) {
-return false;
-  }
-  ++pos;
-}
-return true;
+return TypeSystemUtil.isFeatureName(s);
   }
 
+  /**
+   * @deprecated To be removed without replacement.
+   * @forRemoval 4.0.0
+   */
+  @SuppressWarnings("javadoc")
+  @Deprecated
   static boolean isNonQualifiedName(String s) {
 return isIdentifier(s);
   }
 
+  /**
+   * @deprecated To be removed without replacement.
+   * @forRemoval 4.0.0
+   */
+  @SuppressWarnings("javadoc")
+  @Deprecated
   static boolean isIdentifierStart(char c) {
 return Character.isLetter(c);
   }
 
+  /**
+   * @deprecated To be removed without replacement.
+   * @forRemoval 4.0.0
+   */
+  @SuppressWarnings("javadoc")
+  @Deprecated
   static boolean isIdentifierChar(char c) {
 return (Character.isLetter(c) || Character.isDigit(c) || (c == '_'));
   }
@@ -280,28 +283,12 @@ public abstract class TypeSystemUtils {
* @param name
*  The name to check.
* @return true iff name is a possible type name.
+   * @deprecated Use {@link TypeSystemUtil#isTypeName(String)} instead
+   * @forRemoval 4.0.0
*/
+  @Deprecated
   static boolean isTypeName(String name) {
-// Create a string tokenizer that will split the string at the name
-// space
-// boundaries. We need to see the delimiters to make sure there are no
-// gratuitous delimiters at the beginning or the end.
-StringTokenizer tok = new StringTokenizer(name, 
NAMESPACE_SEPARATOR_AS_STRING, true);
-// Loop over the tokens and check that every item is an identifier.
-while (tok.hasMoreTokens()) {
-  // Any subsequence must start with an identifier.
-  if (!isIdentifier(tok.nextToken())) {
-return false;
-  }
-  // If there is a next token, it must be a separator.
-  if (tok.hasMoreTokens()) {
-// A sequence can not end in a separator.
-if (!tok.nextToken().equals(NAMESPACE_SEPARATOR_AS_STRING) || 
!tok.hasMoreTokens()) {
-  return false;
-}
-  }
-}
-return true;
+return TypeSystemUtil.isTypeName(name);
   }
 
   static boolean isTypeNameSpaceName(String name) {
@@ -357,16 +344,17 @@ public abstract class TypeSystemUtils {
 if (path.isEmpty()) {
   return status;
 }
+
 // Pop the next feature name from the stack and check if it's defined for 
the current type.
-String featName = path.pop();
-FeatureImpl fi = type.getFeatureByBaseName(featName);
+var featName = path.pop();
+var fi = type.getFeatureByBaseName(featName);
 if (fi != null) {
   // If feature is defined, we can continue directly.
   return isPathValid(fi.getRangeImpl(), path, status);
 }
+
 // If feature is not defi

(uima-uimaj) branch feature/369-Move-isTypeName-and-isFeatureName-to-public-API created (now d0025d2c1)

2024-03-24 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch 
feature/369-Move-isTypeName-and-isFeatureName-to-public-API
in repository https://gitbox.apache.org/repos/asf/uima-uimaj.git


  at d0025d2c1 Issue #369: Move isTypeName and isFeatureName to public API

This branch includes the following new commits:

 new d0025d2c1 Issue #369: Move isTypeName and isFeatureName to public API

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




svn commit: r1916280 - /uima/site/trunk/uima-website/docs/board-reports/2024-03.txt

2024-03-13 Thread rec
Author: rec
Date: Wed Mar 13 16:14:48 2024
New Revision: 1916280

URL: http://svn.apache.org/viewvc?rev=1916280=rev
Log:
Added Q1 2024 board report

Added:
uima/site/trunk/uima-website/docs/board-reports/2024-03.txt

Added: uima/site/trunk/uima-website/docs/board-reports/2024-03.txt
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/board-reports/2024-03.txt?rev=1916280=auto
==
--- uima/site/trunk/uima-website/docs/board-reports/2024-03.txt (added)
+++ uima/site/trunk/uima-website/docs/board-reports/2024-03.txt Wed Mar 13 
16:14:48 2024
@@ -0,0 +1,27 @@
+## Description:
+Apache UIMA (*) software provides frameworks, tools and annotators, 
+facilitating the analysis of unstructured content such as text, audio and 
+video. (*) Unstructured Information Management Architecture.
+
+## Project Status:
+Current project status: Ongoing (low)
+Issues for the board: none
+
+## Membership Data:
+Apache UIMA was founded 2010-03-17 (14 years ago)
+There are currently 25 committers and 17 PMC members in this project.
+The Committer-to-PMC ratio is roughly 7:5.
+
+Community changes, past quarter:
+- No new PMC members. Last addition was Pablo Duboue on 2023-03-07.
+- No new committers. Last addition was Pablo Duboue on 2023-03-06.
+
+## Project Activity:
+* uima-ruta-3.4.1 was released on 2024-02-08.
+* uima-ruta-3.4.0 was released on 2024-01-19.
+
+## Community Health:
+At present, there is little activity. Occasional user activity on the mailing
+list / issue tracker, but not much overall. Pablo has started picking up work
+on the UIMA C++ SDK again and is also now looking into creating
+a new website for the UIMA project.




(uima-uimaj-io-jsoncas) branch no-issue-clean-up-spec deleted (was 7334ae5)

2024-02-24 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch no-issue-clean-up-spec
in repository https://gitbox.apache.org/repos/asf/uima-uimaj-io-jsoncas.git


 was 7334ae5  No issue: Comment out alternative sections, future work and 
clarify UTF-16 code units as the offset counting strategy

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(uima-uimaj-io-jsoncas) branch main updated (47f0d5a -> cbe763b)

2024-02-24 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/uima-uimaj-io-jsoncas.git


from 47f0d5a  Merge pull request #23 from 
apache/release/20-Apache-UIMA-Java-SDK-JSON-CAS-IO-0.5.0
 add 7334ae5  No issue: Comment out alternative sections, future work and 
clarify UTF-16 code units as the offset counting strategy
 new cbe763b  Merge pull request #25 from apache/no-issue-clean-up-spec

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 SPECIFICATION.adoc | 121 -
 1 file changed, 93 insertions(+), 28 deletions(-)



(uima-uimaj-io-jsoncas) 01/01: Merge pull request #25 from apache/no-issue-clean-up-spec

2024-02-24 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/uima-uimaj-io-jsoncas.git

commit cbe763bded2498202db16f58a05a3d3045368602
Merge: 47f0d5a 7334ae5
Author: Richard Eckart de Castilho 
AuthorDate: Sat Feb 24 10:19:09 2024 +0100

Merge pull request #25 from apache/no-issue-clean-up-spec

No issue: Clean up specification document

 SPECIFICATION.adoc | 121 -
 1 file changed, 93 insertions(+), 28 deletions(-)



(uima-uimaj-io-jsoncas) 01/01: No issue: Comment out alternative sections, future work and clarify UTF-16 code units as the offset counting strategy

2024-02-22 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch no-issue-clean-up-spec
in repository https://gitbox.apache.org/repos/asf/uima-uimaj-io-jsoncas.git

commit 7334ae5bfe99cd7957b809eee33979c64ab34d42
Author: Richard Eckart de Castilho 
AuthorDate: Fri Feb 23 07:56:40 2024 +0100

No issue: Comment out alternative sections, future work and clarify UTF-16 
code units as the offset counting strategy
---
 SPECIFICATION.adoc | 121 -
 1 file changed, 93 insertions(+), 28 deletions(-)

diff --git a/SPECIFICATION.adoc b/SPECIFICATION.adoc
index 8cee138..39c5d38 100644
--- a/SPECIFICATION.adoc
+++ b/SPECIFICATION.adoc
@@ -20,29 +20,9 @@
 
 = JSON serialization of the Apache UIMA CAS
 
-== Getting started
+This document defiens a JSON-based serialization format for the UIMA CAS. This 
format provides the new go-to solution for encoding UIMA CAS data and to 
facilitate working with such data cross-platform and cross-programming 
languages.
 
-.Serializing a CAS to JSON
-[source,java]
-
-import org.apache.uima.json.jsoncas2.JsonCas2Serializer
-
-CAS cas = ...;
-new JsonCas2Serializer().serialize(cas, new File("cas.json"));
-
-
-.De-serializing a CAS from JSON
-[source,java]
-
-import org.apache.uima.json.jsoncas2.JsonCas2Deserializer;
-
-CAS cas = ...; // The CAS must already be prepared with the type system used 
by the CAS JSON file
-new JsonCas2Deserializer().deserialize(new File("cas.json"), cas);
-
-
-== Specification
-
-This document introduces a new JSON-based serialization format for the UIMA 
CAS. The new format aims to provide the new go-to solution for encoding UIMA 
CAS data and to facilitate working with such data cross-platform and 
cross-programming languages.
+== Motivation
 
 For the most part, the UIMA CAS 
XMIfootnote:[https://uima.apache.org/d/uimaj-current/references.html#ugr.ref.xmi]
 format has been the de-facto standard representation of UIMA data. However, 
the format has several short-comings:
 
@@ -75,8 +55,11 @@ The new UIMA JSON CAS format should meet the following 
requirements:
 * contain all information required to parse it
 * contain all information contained in the UIMA CAS
 * preserve all information across a (de)serialization cycle
-* avoid ambiguities footnote:[Note that this *draft* document will often 
propose
+* avoid ambiguities
+ 
+footnote:[Note that this *draft* document will often propose
   alternative data representations. The idea is to consider them and to 
eventually argue for a canonical representation.]
+  
 * maybe to show a comparable (or even a better) performance in terms of size 
and speed
 
 === UIMA CAS entities
@@ -134,11 +117,13 @@ Keys that have reserved names in the CAS JSON format 
always start with a KEYWORD
 
 Keyword fields must always precede user-definable fields in the serialized 
JSON objects. Additionally, there may be specific order requirements on the 
keyword fields themselves.
 
+
 .Alternative suggestions:
 * The KEYWORD_MARKER should be `_` - however, `_` is a valid identifier 
character
 * The keys should not be upper-case but rather lower-case, camel-case, or 
kebab-case
 * The JSON structure should be defined such that user-defined and predefined 
keys are
   clearly separated from each other. Any object contains either only 
user-definable keys or only predefined keys. E.g. in a feature structure, there 
should be an explicit key `features` under which all user-definable features 
are located.
+
 
 === CAS
 
@@ -165,11 +150,13 @@ To facilitate the implementation of streaming parsers, 
the fields should be enco
 . *Views:* provides information about the namespaces into which the feature 
structures 
   have been organized. In particular, the views section may provide 
information about the existence of a view even if that view has no member 
feature structures. Each view contains a list of members referring to feature 
structures from the previous section.
 
+
 .Alternative suggestions:
 * The view section should contain an array pointing to the members of the 
view. The 
   views section should then precede the feature structures section such that 
the parser already knows to which view a feature structure should be added when 
it encounters the feature structure.
 * All three sections could in principle be optional. A UIMA JSON CAS 
containing only a 
   types section is essentially the equivalent of an XML type system 
description. A JSON CAS only containing feature structures could be sufficient 
if we assume that all these feature structures would be indexed by default in 
the default view. The views section would not be required if the CAS only 
contains the predefined default view.
+
 
 === Header
 
@@ -181,8 +168,10 @@ The header provides information to the parser on how to 
parse the UIMA JSON CAS.
 |`%VERSION` |UIMA CAS JSON specification version to which the JS

(uima-uimaj-io-jsoncas) branch no-issue-clean-up-spec created (now 7334ae5)

2024-02-22 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch no-issue-clean-up-spec
in repository https://gitbox.apache.org/repos/asf/uima-uimaj-io-jsoncas.git


  at 7334ae5  No issue: Comment out alternative sections, future work and 
clarify UTF-16 code units as the offset counting strategy

This branch includes the following new commits:

 new 7334ae5  No issue: Comment out alternative sections, future work and 
clarify UTF-16 code units as the offset counting strategy

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




(uima-ruta) 01/01: Merge branch 'maintenance/3.4.x' into no-issue-merge-3.4.x-after-release

2024-02-08 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch no-issue-merge-3.4.x-after-release
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 25d42d6c4b1e7093a98e0d755be950d1234096ef
Merge: 932b5e72 0658db1e
Author: noname 
AuthorDate: Thu Feb 8 18:25:46 2024 +0100

Merge branch 'maintenance/3.4.x' into no-issue-merge-3.4.x-after-release

* maintenance/3.4.x:
  [maven-release-plugin] prepare for next development iteration
  [maven-release-plugin] prepare release ruta-3.4.1
  Issue #165: Apache UIMA Ruta 3.4.1
  no issue: cleanup

% Conflicts:
%   example-projects/ruta-ep-example-extensions/pom.xml
%   example-projects/ruta-maven-example/pom.xml
%   pom.xml
%   ruta-core-ext/pom.xml
%   ruta-core/pom.xml
%   ruta-documentation/pom.xml
%   ruta-eclipse-feature/feature.xml
%   ruta-eclipse-feature/pom.xml
%   ruta-eclipse-update-site/category.xml
%   ruta-eclipse-update-site/pom.xml
%   ruta-ep-addons/pom.xml
%   ruta-ep-caseditor/pom.xml
%   ruta-ep-core-ext/pom.xml
%   ruta-ep-engine/pom.xml
%   ruta-ep-ide-ui/pom.xml
%   ruta-ep-ide/pom.xml
%   ruta-ep-parent/pom.xml
%   ruta-ep-textruler/pom.xml
%   ruta-maven-archetype/pom.xml
%   ruta-maven-plugin/pom.xml
%   ruta-parent/pom.xml

 RELEASE_NOTES.md| 20 ++--
 ruta-parent/pom.xml |  4 ++--
 2 files changed, 8 insertions(+), 16 deletions(-)




(uima-ruta) branch no-issue-merge-3.4.x-after-release created (now 25d42d6c)

2024-02-08 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch no-issue-merge-3.4.x-after-release
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


  at 25d42d6c Merge branch 'maintenance/3.4.x' into 
no-issue-merge-3.4.x-after-release

This branch includes the following new commits:

 new 25d42d6c Merge branch 'maintenance/3.4.x' into 
no-issue-merge-3.4.x-after-release

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




(uima-ruta) branch release/165-Apache-UIMA-Ruta-3.4.1 deleted (was 722c646b)

2024-02-08 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/165-Apache-UIMA-Ruta-3.4.1
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


 was 722c646b [maven-release-plugin] prepare for next development iteration

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(uima-ruta) branch maintenance/3.4.x updated (b7b877dc -> 0658db1e)

2024-02-08 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch maintenance/3.4.x
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from b7b877dc Merge pull request #164 from apache/no-issue-fix-pom-3.4.x
 add 6c423d4e Issue #165: Apache UIMA Ruta 3.4.1
 add 68e2f261 [maven-release-plugin] prepare release ruta-3.4.1
 add 722c646b [maven-release-plugin] prepare for next development iteration
 new 0658db1e Merge pull request #166 from 
apache/release/165-Apache-UIMA-Ruta-3.4.1

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 RELEASE_NOTES.md| 20 ++--
 example-projects/ruta-ep-example-extensions/pom.xml |  2 +-
 example-projects/ruta-maven-example/pom.xml |  2 +-
 pom.xml |  6 +++---
 ruta-core-ext/pom.xml   |  2 +-
 ruta-core/pom.xml   |  2 +-
 ruta-documentation/pom.xml  |  2 +-
 ruta-eclipse-feature/feature.xml|  2 +-
 ruta-eclipse-feature/pom.xml| 16 
 ruta-eclipse-update-site/category.xml   |  2 +-
 ruta-eclipse-update-site/pom.xml|  4 ++--
 ruta-ep-addons/pom.xml  |  2 +-
 ruta-ep-caseditor/pom.xml   |  2 +-
 ruta-ep-core-ext/pom.xml|  2 +-
 ruta-ep-engine/pom.xml  |  2 +-
 ruta-ep-ide-ui/pom.xml  |  2 +-
 ruta-ep-ide/pom.xml |  2 +-
 ruta-ep-parent/pom.xml  |  2 +-
 ruta-ep-textruler/pom.xml   |  2 +-
 ruta-maven-archetype/pom.xml|  2 +-
 ruta-maven-plugin/pom.xml   |  2 +-
 ruta-parent/pom.xml |  6 +++---
 22 files changed, 39 insertions(+), 47 deletions(-)



(uima-ruta) 01/01: Merge pull request #166 from apache/release/165-Apache-UIMA-Ruta-3.4.1

2024-02-08 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch maintenance/3.4.x
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 0658db1e73690fbb4c7c6cf7d059b17451b45711
Merge: b7b877dc 722c646b
Author: Richard Eckart de Castilho 
AuthorDate: Thu Feb 8 15:26:50 2024 +0100

Merge pull request #166 from apache/release/165-Apache-UIMA-Ruta-3.4.1

Issue #165: Apache UIMA Ruta 3.4.1

 RELEASE_NOTES.md| 20 ++--
 example-projects/ruta-ep-example-extensions/pom.xml |  2 +-
 example-projects/ruta-maven-example/pom.xml |  2 +-
 pom.xml |  6 +++---
 ruta-core-ext/pom.xml   |  2 +-
 ruta-core/pom.xml   |  2 +-
 ruta-documentation/pom.xml  |  2 +-
 ruta-eclipse-feature/feature.xml|  2 +-
 ruta-eclipse-feature/pom.xml| 16 
 ruta-eclipse-update-site/category.xml   |  2 +-
 ruta-eclipse-update-site/pom.xml|  4 ++--
 ruta-ep-addons/pom.xml  |  2 +-
 ruta-ep-caseditor/pom.xml   |  2 +-
 ruta-ep-core-ext/pom.xml|  2 +-
 ruta-ep-engine/pom.xml  |  2 +-
 ruta-ep-ide-ui/pom.xml  |  2 +-
 ruta-ep-ide/pom.xml |  2 +-
 ruta-ep-parent/pom.xml  |  2 +-
 ruta-ep-textruler/pom.xml   |  2 +-
 ruta-maven-archetype/pom.xml|  2 +-
 ruta-maven-plugin/pom.xml   |  2 +-
 ruta-parent/pom.xml |  6 +++---
 22 files changed, 39 insertions(+), 47 deletions(-)



svn commit: r1915649 - /uima/site/archive/docs/d/ruta-3.4.1/

2024-02-08 Thread rec
Author: rec
Date: Thu Feb  8 14:23:17 2024
New Revision: 1915649

URL: http://svn.apache.org/viewvc?rev=1915649=rev
Log:
Creating versioned copy of current release documentation in archive

Added:
uima/site/archive/docs/d/ruta-3.4.1/
  - copied from r1915648, uima/site/trunk/uima-website/docs/d/ruta-current/



svn commit: r1915648 - in /uima/site/trunk/uima-website: docs/ docs/d/ruta-current/ docs/d/ruta-current/issuesFixed/ docs/d/ruta-current/ruta/ xdocs/ xdocs/stylesheets/

2024-02-08 Thread rec
Author: rec
Date: Thu Feb  8 14:22:46 2024
New Revision: 1915648

URL: http://svn.apache.org/viewvc?rev=1915648=rev
Log:
Apache UIMA Ruta 3.4.1

Removed:
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/.DS_Store
Modified:
uima/site/trunk/uima-website/docs/d/ruta-current/README.md
uima/site/trunk/uima-website/docs/d/ruta-current/RELEASE_NOTES.md

uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/github-report.md
uima/site/trunk/uima-website/docs/d/ruta-current/ruta.html
uima/site/trunk/uima-website/docs/d/ruta-current/ruta.pdf
uima/site/trunk/uima-website/docs/downloads.html
uima/site/trunk/uima-website/docs/news.html
uima/site/trunk/uima-website/docs/ruta.html
uima/site/trunk/uima-website/xdocs/news.xml
uima/site/trunk/uima-website/xdocs/ruta.xml
uima/site/trunk/uima-website/xdocs/stylesheets/project.xml

Modified: uima/site/trunk/uima-website/docs/d/ruta-current/README.md
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/README.md?rev=1915648=1915647=1915648=diff
==
--- uima/site/trunk/uima-website/docs/d/ruta-current/README.md (original)
+++ uima/site/trunk/uima-website/docs/d/ruta-current/README.md Thu Feb  8 
14:22:46 2024
@@ -136,7 +136,7 @@ Useful links
 
 
 * [Apache UIMA](https://uima.apache.org)
-* [Apache UIMA Ruta 
Documentation](https://uima.apache.org/d/ruta-current/ruta.html)
+* [Apache UIMA Ruta 
Documentation](https://uima.apache.org/d/ruta-current/tools.ruta.book.html)
 * [Averbis Ruta Training material](https://github.com/averbis/ruta-training) 
(external)
 
 

Modified: uima/site/trunk/uima-website/docs/d/ruta-current/RELEASE_NOTES.md
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/RELEASE_NOTES.md?rev=1915648=1915647=1915648=diff
==
--- uima/site/trunk/uima-website/docs/d/ruta-current/RELEASE_NOTES.md (original)
+++ uima/site/trunk/uima-website/docs/d/ruta-current/RELEASE_NOTES.md Thu Feb  
8 14:22:46 2024
@@ -19,7 +19,7 @@
 ***
 -->

-# Apache UIMA Ruta (TM) v3.4.0
+# Apache UIMA Ruta (TM) v3.4.1
 
 Apache UIMA Ruta™ is a rule-based script language supported by Eclipse-based 
tooling.
 The language is designed to enable rapid development of text processing 
applications within Apache UIMA. 
@@ -31,22 +31,14 @@ Ruta rule language and the Ruta Workbenc
 This is a feature and bugfix release.
 
 ## What's Changed
-* ⭐️ Issue #130: Improve support for feature assignments
-* ⭐️ Issue #152: Better error messages in query view
-* 🦟 Issue #139: Unexpected behavior of plus operator
-* 🦟 Issue #151: Unable to use Ruta Query view in Ruta 3.4.0-RC-1
-* 🦟 Issue #155: UIMA Core plugins not found when installing Ruta
-* ⚙️ Issue #133: Update dependencies
-* ⚙️ Issue #157: Mark Maven Mojos as thread-safe
-* 📘 Issue #136: Convert documentation to Asciidoc
-* 📘 No issue: Fix description of ADDRETAINTYPE
+* 🦟 Issue #159: Assignment of composed number expression is broken
+* 🦟 Issue #161: Right to left wildcard matches too much
 
-
-**Full Changelog**: 
https://github.com/apache/uima-ruta/compare/rel/ruta-3.3.0...ruta-3.4.0
+**Full Changelog**: 
https://github.com/apache/uima-ruta/compare/rel/ruta-3.4.0...ruta-3.4.1
 
 Please use the [mailing lists](https://uima.apache.org/mail-lists.html) for 
feedback and the [issue tracker](https://github.com/apache/uima-ruta/issues) to 
report bugs.
 
-## Compatibility notes
+## Compatibility notes for v3.4.x
 * The modules `ruta-typesystem` and `ruta-basic-type` do no longer exist as 
separate modules. They have
   been merged into the `ruta-core` module.
 * Parts of the `ruta-core-ext` module have been merged into the `ruta-core` 
module as well. The merged
@@ -56,7 +48,7 @@ Please use the [mailing lists](https://u
 
 ## Supported Platforms
 
-UIMA Ruta 3.4.0 should be used in combination with
+UIMA Ruta 3.4.1 should be used in combination with
 
 - Java 17 or higher
 - UIMA Java SDK 3.5.0 or higher

Modified: 
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/github-report.md
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/github-report.md?rev=1915648=1915647=1915648=diff
==
--- 
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/github-report.md 
(original)
+++ 
uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/github-report.md 
Thu Feb  8 14:22:46 2024
@@ -1,24 +1,8 @@
 ## What's Changed
-* Issue #125: Apache UIMA Ruta 3.3.0 by @reckart in 
https://github.com/apache/uima-ruta/pull/126
-* Fix description of ADDRETAINTYPE in documentation by @azazali30 in 
https://github.com/apache/uima-ruta/pull/127
-* No issue. 

svn commit: r1915647 - /uima/site/archive/docs/d/ruta-3.4.0/

2024-02-08 Thread rec
Author: rec
Date: Thu Feb  8 14:12:41 2024
New Revision: 1915647

URL: http://svn.apache.org/viewvc?rev=1915647=rev
Log:
Creating versioned copy of current release documentation in archive

Added:
uima/site/archive/docs/d/ruta-3.4.0/
  - copied from r1915646, uima/site/trunk/uima-website/docs/d/ruta-current/



(uima-ruta) annotated tag rel/ruta-3.4.1 updated (68e2f261 -> 11f2644c)

2024-02-08 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to annotated tag rel/ruta-3.4.1
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


*** WARNING: tag rel/ruta-3.4.1 was modified! ***

from 68e2f261 (commit)
  to 11f2644c (tag)
 tagging 68e2f26138608c51b37ade7c88f89872611b9dac (commit)
 replaces rel/ruta-3.4.0
  by noname
  on Thu Feb 8 15:11:36 2024 +0100

- Log -
---


No new revisions were added by this update.

Summary of changes:



(uima-ruta) annotated tag ruta-3.4.1 deleted (was 0c35ffde)

2024-02-08 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to annotated tag ruta-3.4.1
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


*** WARNING: tag ruta-3.4.1 was deleted! ***

   tag was  0c35ffde

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.



svn commit: r67254 - /release/uima/archive-eclipse-update-site/ruta-3.4.1/

2024-02-08 Thread rec
Author: rec
Date: Thu Feb  8 14:06:12 2024
New Revision: 67254

Log:
Create eclipse plugin archive for ruta 3.4.1

Added:
release/uima/archive-eclipse-update-site/ruta-3.4.1/
  - copied from r67253, release/uima/eclipse-update-site-v3/ruta/



svn commit: r67253 - in /release/uima: eclipse-update-site-v3/ruta/ ruta-3.4.1/eclipse-update-site/

2024-02-08 Thread rec
Author: rec
Date: Thu Feb  8 14:05:01 2024
New Revision: 67253

Log:
Installing Ruta 3.4.1 update site from accepted RC1

Added:
release/uima/eclipse-update-site-v3/ruta/
  - copied from r67252, release/uima/ruta-3.4.1/eclipse-update-site/
Removed:
release/uima/ruta-3.4.1/eclipse-update-site/



svn commit: r67252 - /release/uima/eclipse-update-site-v3/ruta/

2024-02-08 Thread rec
Author: rec
Date: Thu Feb  8 14:04:36 2024
New Revision: 67252

Log:
Removing previous update site to make space for new one

Removed:
release/uima/eclipse-update-site-v3/ruta/



svn commit: r67251 - /release/uima/archive-eclipse-update-site/ruta-3.4.0/

2024-02-08 Thread rec
Author: rec
Date: Thu Feb  8 14:04:01 2024
New Revision: 67251

Log:
Create eclipse plugin archive for ruta 3.4.0

Added:
release/uima/archive-eclipse-update-site/ruta-3.4.0/
  - copied from r67250, release/uima/eclipse-update-site-v3/ruta/



svn commit: r67250 - /dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/ /release/uima/ruta-3.4.1/

2024-02-08 Thread rec
Author: rec
Date: Thu Feb  8 14:03:14 2024
New Revision: 67250

Log:
Move final release candidate to dist spot

Added:
release/uima/ruta-3.4.1/
  - copied from r67249, dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/
Removed:
dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/



svn commit: r67188 - in /dev/uima/ruta-3.4.1-RC-202402051009-68e2f26: ./ eclipse-update-site/ eclipse-update-site/META-INF/ eclipse-update-site/features/ eclipse-update-site/plugins/

2024-02-05 Thread rec
Author: rec
Date: Mon Feb  5 10:10:34 2024
New Revision: 67188

Log:
Staging release artifacts for ruta-3.4.1-RC-202402051009-68e2f26

Added:
dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/
dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/
dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/META-INF/

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/META-INF/DEPENDENCIES

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/META-INF/LICENSE

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/META-INF/NOTICE

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/artifacts.jar   
(with props)

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/artifacts.jar.asc

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/artifacts.jar.sha512

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/artifacts.xml.xz
   (with props)

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/artifacts.xml.xz.asc

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/artifacts.xml.xz.sha512
dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/content.jar 
  (with props)

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/content.jar.asc

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/content.jar.sha512

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/content.xml.xz  
 (with props)

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/content.xml.xz.asc

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/content.xml.xz.sha512
dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/features/

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/features/org.apache.uima.ruta.feature_3.4.1.jar
   (with props)

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/features/org.apache.uima.ruta.feature_3.4.1.jar.asc

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/features/org.apache.uima.ruta.feature_3.4.1.jar.sha512
dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/p2.index
dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/p2.index.asc

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/p2.index.sha512
dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.addons_3.4.1.jar
   (with props)

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.addons_3.4.1.jar.asc

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.addons_3.4.1.jar.sha512

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.caseditor_3.4.1.jar
   (with props)

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.caseditor_3.4.1.jar.asc

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.caseditor_3.4.1.jar.sha512

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.core.ext_3.4.1.jar
   (with props)

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.core.ext_3.4.1.jar.asc

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.core.ext_3.4.1.jar.sha512

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.engine_3.4.1.jar
   (with props)

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.engine_3.4.1.jar.asc

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.engine_3.4.1.jar.sha512

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.ide.ui_3.4.1.jar
   (with props)

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.ide.ui_3.4.1.jar.asc

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.ide.ui_3.4.1.jar.sha512

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.ide_3.4.1.jar
   (with props)

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.ide_3.4.1.jar.asc

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.ide_3.4.1.jar.sha512

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.textruler_3.4.1.jar
   (with props)

dev/uima/ruta-3.4.1-RC-202402051009-68e2f26/eclipse-update-site/plugins/org.apache.uima.ruta.textruler_3.4.1.jar.asc

dev/uima/ruta

(uima-ruta) annotated tag ruta-3.4.1 updated (68e2f261 -> 0c35ffde)

2024-02-05 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to annotated tag ruta-3.4.1
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


*** WARNING: tag ruta-3.4.1 was modified! ***

from 68e2f261 (commit)
  to 0c35ffde (tag)
 tagging 68e2f26138608c51b37ade7c88f89872611b9dac (commit)
 replaces rel/ruta-3.4.0
  by noname
  on Mon Feb 5 11:07:26 2024 +0100

- Log -
[maven-release-plugin] copy for tag ruta-3.4.1
---


No new revisions were added by this update.

Summary of changes:



(uima-ruta) branch release/165-Apache-UIMA-Ruta-3.4.1 updated (68e2f261 -> 722c646b)

2024-02-05 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/165-Apache-UIMA-Ruta-3.4.1
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 68e2f261 [maven-release-plugin] prepare release ruta-3.4.1
 add 722c646b [maven-release-plugin] prepare for next development iteration

No new revisions were added by this update.

Summary of changes:
 example-projects/ruta-ep-example-extensions/pom.xml |  2 +-
 example-projects/ruta-maven-example/pom.xml |  4 ++--
 pom.xml |  8 
 ruta-core-ext/pom.xml   |  4 ++--
 ruta-core/pom.xml   |  4 ++--
 ruta-documentation/pom.xml  |  2 +-
 ruta-eclipse-feature/feature.xml|  2 +-
 ruta-eclipse-feature/pom.xml| 16 
 ruta-eclipse-update-site/category.xml   |  2 +-
 ruta-eclipse-update-site/pom.xml|  6 +++---
 ruta-ep-addons/pom.xml  |  4 ++--
 ruta-ep-caseditor/pom.xml   |  4 ++--
 ruta-ep-core-ext/pom.xml|  4 ++--
 ruta-ep-engine/pom.xml  |  4 ++--
 ruta-ep-ide-ui/pom.xml  |  4 ++--
 ruta-ep-ide/pom.xml |  4 ++--
 ruta-ep-parent/pom.xml  |  4 ++--
 ruta-ep-textruler/pom.xml   |  4 ++--
 ruta-maven-archetype/pom.xml|  4 ++--
 ruta-maven-plugin/pom.xml   |  4 ++--
 ruta-parent/pom.xml |  4 ++--
 21 files changed, 47 insertions(+), 47 deletions(-)



(uima-ruta) branch release/165-Apache-UIMA-Ruta-3.4.1 updated (6c423d4e -> 68e2f261)

2024-02-05 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/165-Apache-UIMA-Ruta-3.4.1
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 6c423d4e Issue #165: Apache UIMA Ruta 3.4.1
 add 68e2f261 [maven-release-plugin] prepare release ruta-3.4.1

No new revisions were added by this update.

Summary of changes:
 example-projects/ruta-ep-example-extensions/pom.xml |  2 +-
 example-projects/ruta-maven-example/pom.xml |  4 ++--
 pom.xml |  8 
 ruta-core-ext/pom.xml   |  4 ++--
 ruta-core/pom.xml   |  4 ++--
 ruta-documentation/pom.xml  |  2 +-
 ruta-eclipse-feature/feature.xml|  2 +-
 ruta-eclipse-feature/pom.xml| 16 
 ruta-eclipse-update-site/category.xml   |  2 +-
 ruta-eclipse-update-site/pom.xml|  6 +++---
 ruta-ep-addons/pom.xml  |  4 ++--
 ruta-ep-caseditor/pom.xml   |  4 ++--
 ruta-ep-core-ext/pom.xml|  4 ++--
 ruta-ep-engine/pom.xml  |  4 ++--
 ruta-ep-ide-ui/pom.xml  |  4 ++--
 ruta-ep-ide/pom.xml |  4 ++--
 ruta-ep-parent/pom.xml  |  4 ++--
 ruta-ep-textruler/pom.xml   |  4 ++--
 ruta-maven-archetype/pom.xml|  4 ++--
 ruta-maven-plugin/pom.xml   |  4 ++--
 ruta-parent/pom.xml |  4 ++--
 21 files changed, 47 insertions(+), 47 deletions(-)



(uima-ruta) 01/01: Issue #165: Apache UIMA Ruta 3.4.1

2024-02-05 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch release/165-Apache-UIMA-Ruta-3.4.1
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 6c423d4e5ab897ece4de0d493e3362e8f7baa55f
Author: Richard Eckart de Castilho 
AuthorDate: Mon Feb 5 10:51:17 2024 +0100

Issue #165: Apache UIMA Ruta 3.4.1

- Update RELEASE_NOTES
- Update reference versions for API compatibility checks and changelog 
generation
---
 RELEASE_NOTES.md| 20 ++--
 ruta-parent/pom.xml |  4 ++--
 2 files changed, 8 insertions(+), 16 deletions(-)

diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 61ec9cf1..0c611bfd 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -19,7 +19,7 @@
 ***
 -->

-# Apache UIMA Ruta (TM) v3.4.0
+# Apache UIMA Ruta (TM) v3.4.1
 
 Apache UIMA Ruta™ is a rule-based script language supported by Eclipse-based 
tooling.
 The language is designed to enable rapid development of text processing 
applications within Apache UIMA. 
@@ -31,22 +31,14 @@ Ruta rule language and the Ruta Workbench integrate 
smoothly with Apache UIMA.
 This is a feature and bugfix release.
 
 ## What's Changed
-* ⭐️ Issue #130: Improve support for feature assignments
-* ⭐️ Issue #152: Better error messages in query view
-* 烈 Issue #139: Unexpected behavior of plus operator
-* 烈 Issue #151: Unable to use Ruta Query view in Ruta 3.4.0-RC-1
-* 烈 Issue #155: UIMA Core plugins not found when installing Ruta
-* ⚙️ Issue #133: Update dependencies
-* ⚙️ Issue #157: Mark Maven Mojos as thread-safe
-*  Issue #136: Convert documentation to Asciidoc
-*  No issue: Fix description of ADDRETAINTYPE
+* 烈 Issue #159: Assignment of composed number expression is broken
+* 烈 Issue #161: Right to left wildcard matches too much
 
-
-**Full Changelog**: 
https://github.com/apache/uima-ruta/compare/rel/ruta-3.3.0...ruta-3.4.0
+**Full Changelog**: 
https://github.com/apache/uima-ruta/compare/rel/ruta-3.4.0...ruta-3.4.1
 
 Please use the [mailing lists](https://uima.apache.org/mail-lists.html) for 
feedback and the [issue tracker](https://github.com/apache/uima-ruta/issues) to 
report bugs.
 
-## Compatibility notes
+## Compatibility notes for v3.4.x
 * The modules `ruta-typesystem` and `ruta-basic-type` do no longer exist as 
separate modules. They have
   been merged into the `ruta-core` module.
 * Parts of the `ruta-core-ext` module have been merged into the `ruta-core` 
module as well. The merged
@@ -56,7 +48,7 @@ Please use the [mailing 
lists](https://uima.apache.org/mail-lists.html) for feed
 
 ## Supported Platforms
 
-UIMA Ruta 3.4.0 should be used in combination with
+UIMA Ruta 3.4.1 should be used in combination with
 
 - Java 17 or higher
 - UIMA Java SDK 3.5.0 or higher
diff --git a/ruta-parent/pom.xml b/ruta-parent/pom.xml
index 668a610f..abb73ad4 100644
--- a/ruta-parent/pom.xml
+++ b/ruta-parent/pom.xml
@@ -156,12 +156,12 @@
 org.eclipse.p2.202309
 org.eclipse.p2.201812
 
-3.3.0
+3.4.0
 
 
 uima-ruta
 main
-3.3.0
+3.4.0
 
   
 



(uima-ruta) branch release/165-Apache-UIMA-Ruta-3.4.1 created (now 6c423d4e)

2024-02-05 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/165-Apache-UIMA-Ruta-3.4.1
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


  at 6c423d4e Issue #165: Apache UIMA Ruta 3.4.1

This branch includes the following new commits:

 new 6c423d4e Issue #165: Apache UIMA Ruta 3.4.1

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 deleted (was b7b877dc)

2024-02-05 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


 was b7b877dc Merge pull request #164 from apache/no-issue-fix-pom-3.4.x

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(uima-ruta) annotated tag rel/ruta-3.4.0 updated (167560c3 -> fecaf5cc)

2024-02-05 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to annotated tag rel/ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


*** WARNING: tag rel/ruta-3.4.0 was modified! ***

from 167560c3 (commit)
  to fecaf5cc (tag)
 tagging 167560c3b5ef20d622b288f24cd76a63bbbed1b0 (commit)
 replaces rel/ruta-3.3.0
  by Richard Eckart de Castilho
  on Mon Feb 5 10:38:52 2024 +0100

- Log -
---


No new revisions were added by this update.

Summary of changes:



(uima-ruta) annotated tag rel/ruta-3.4.0 deleted (was ec55754e)

2024-02-05 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to annotated tag rel/ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


*** WARNING: tag rel/ruta-3.4.0 was deleted! ***

   tag was  ec55754e

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 updated (4fa4df4a -> b7b877dc)

2024-02-05 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 4fa4df4a [maven-release-plugin] prepare for next development iteration
 add cd8ee4b4 Merge pull request #150 from 
apache/release/146-Apache-UIMA-Ruta-3.4.0
 add 1c44f121 Issue #161: Right to left wildcard matches too much
 add 39d5a8d4 Issue #161: Right to left wildcard matches too much
 add 2343d2ea Issue #159: Assignment of composed number expression is broken
 add 302688ce Merge pull request #160 from 
apache/bugfix/159-Assignment-of-composed-number-expression-is-broken
 add a380a668 Merge branch 'main' into 
bugfix/161-Right-to-left-wildcard-matches-too-much
 add d7772d07 Merge pull request #162 from 
apache/bugfix/161-Right-to-left-wildcard-matches-too-much
 add 2478bd54 no issue: cleanup
 add b7b877dc Merge pull request #164 from apache/no-issue-fix-pom-3.4.x

No new revisions were added by this update.

Summary of changes:
 example-projects/ruta-maven-example/pom.xml|  2 +-
 pom.xml|  2 +-
 ruta-core-ext/pom.xml  |  2 +-
 ruta-core/pom.xml  |  2 +-
 .../org/apache/uima/ruta/parser/RutaParser.g   | 14 +++-
 .../uima/ruta/condition/ConditionFactory.java  |  4 +-
 .../uima/ruta/expression/ExpressionFactory.java|  6 +-
 .../ruta/expression/GenericComposedExpression.java | 83 ++
 .../java/org/apache/uima/ruta/utils/UIMAUtils.java |  8 +--
 .../uima/ruta/verbalize/ExpressionVerbalizer.java  | 14 +++-
 .../number/ComposedNumberExpressionTest.java   |  6 +-
 .../number/NumberExpressionTest.java}  | 34 ++---
 .../org/apache/uima/ruta/rule/WildCard2Test.java   | 20 ++
 .../ruta/verbalizer/ExpressionVerbalizerTest.java  | 73 ---
 ruta-eclipse-update-site/pom.xml   |  2 +-
 ruta-ep-addons/pom.xml |  2 +-
 ruta-ep-caseditor/pom.xml  |  2 +-
 ruta-ep-core-ext/pom.xml   |  2 +-
 ruta-ep-engine/pom.xml |  2 +-
 ruta-ep-ide-ui/pom.xml |  2 +-
 ruta-ep-ide/pom.xml|  2 +-
 ruta-ep-parent/pom.xml |  2 +-
 ruta-ep-textruler/pom.xml  |  2 +-
 ruta-maven-archetype/pom.xml   |  2 +-
 ruta-maven-plugin/pom.xml  |  2 +-
 ruta-parent/pom.xml|  2 +-
 26 files changed, 208 insertions(+), 86 deletions(-)
 create mode 100644 
ruta-core/src/main/java/org/apache/uima/ruta/expression/GenericComposedExpression.java
 copy 
ruta-core/src/test/java/org/apache/uima/ruta/{rule/InvisibleWildcardMatchTest.java
 => expression/number/NumberExpressionTest.java} (51%)



(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 created (now 4fa4df4a)

2024-02-05 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


  at 4fa4df4a [maven-release-plugin] prepare for next development iteration

No new revisions were added by this update.



svn commit: r1915379 - in /uima/site/trunk/uima-website: docs/d/ruta-current/README.md docs/ruta.html xdocs/ruta.xml

2024-01-24 Thread rec
Author: rec
Date: Wed Jan 24 13:42:36 2024
New Revision: 1915379

URL: http://svn.apache.org/viewvc?rev=1915379=rev
Log:
No issue: Fix links to Ruta documentation

Modified:
uima/site/trunk/uima-website/docs/d/ruta-current/README.md
uima/site/trunk/uima-website/docs/ruta.html
uima/site/trunk/uima-website/xdocs/ruta.xml

Modified: uima/site/trunk/uima-website/docs/d/ruta-current/README.md
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/README.md?rev=1915379=1915378=1915379=diff
==
--- uima/site/trunk/uima-website/docs/d/ruta-current/README.md (original)
+++ uima/site/trunk/uima-website/docs/d/ruta-current/README.md Wed Jan 24 
13:42:36 2024
@@ -136,7 +136,7 @@ Useful links
 
 
 * [Apache UIMA](https://uima.apache.org)
-* [Apache UIMA Ruta 
Documentation](https://uima.apache.org/d/ruta-current/tools.ruta.book.html)
+* [Apache UIMA Ruta 
Documentation](https://uima.apache.org/d/ruta-current/ruta.html)
 * [Averbis Ruta Training material](https://github.com/averbis/ruta-training) 
(external)
 
 

Modified: uima/site/trunk/uima-website/docs/ruta.html
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/ruta.html?rev=1915379=1915378=1915379=diff
==
--- uima/site/trunk/uima-website/docs/ruta.html (original)
+++ uima/site/trunk/uima-website/docs/ruta.html Wed Jan 24 13:42:36 2024
@@ -402,7 +402,7 @@
   
 Latest UIMA Ruta 
documentation
 
-Apache UIMA Ruta Guide 
and Reference (v3.x)
+Apache UIMA Ruta Guide and 
Reference (v3.x)
 Latest release notes 
(v3.x)
   
 Should you require 
documentation for a specific version of uimaFIT, please check our https://svn.apache.org/repos/asf/uima/site/archive/docs/d;>archive.

Modified: uima/site/trunk/uima-website/xdocs/ruta.xml
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/xdocs/ruta.xml?rev=1915379=1915378=1915379=diff
==
--- uima/site/trunk/uima-website/xdocs/ruta.xml (original)
+++ uima/site/trunk/uima-website/xdocs/ruta.xml Wed Jan 24 13:42:36 2024
@@ -148,7 +148,7 @@ under the License.
 
   Latest UIMA Ruta documentation
   
-Apache UIMA Ruta Guide 
and Reference (v3.x)
+Apache UIMA Ruta Guide and 
Reference (v3.x)
 Latest release notes 
(v3.x)
   
 




svn commit: r1915326 [2/4] - in /uima/site/trunk/uima-website: docs/ docs/d/ruta-current/ docs/d/ruta-current/css/ docs/d/ruta-current/images/ docs/d/ruta-current/issuesFixed/ docs/d/ruta-current/issu

2024-01-19 Thread rec
Added: uima/site/trunk/uima-website/docs/d/ruta-current/ruta.html
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/ruta.html?rev=1915326=auto
==
--- uima/site/trunk/uima-website/docs/d/ruta-current/ruta.html (added)
+++ uima/site/trunk/uima-website/docs/d/ruta-current/ruta.html Fri Jan 19 
12:49:00 2024
@@ -0,0 +1,8543 @@
+
+
+
+
+
+
+
+
+Apache UIMA™ - Ruta
+
+/*! Asciidoctor default stylesheet | MIT License | https://asciidoctor.org */
+/* Uncomment the following line when using as a custom stylesheet */
+/* @import 
"https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400,700";;
 */
+html{font-family:sans-serif;-webkit-text-size-adjust:100%}
+a{background:none}
+a:focus{outline:thin dotted}
+a:active,a:hover{outline:0}
+h1{font-size:2em;margin:.67em 0}
+b,strong{font-weight:bold}
+abbr{font-size:.9em}
+abbr[title]{cursor:help;border-bottom:1px dotted #df;text-decoration:none}
+dfn{font-style:italic}
+hr{height:0}
+mark{background:#ff0;color:#000}
+code,kbd,pre,samp{font-family:monospace;font-size:1em}
+pre{white-space:pre-wrap}
+q{quotes:"\201C" "\201D" "\2018" "\2019"}
+small{font-size:80%}
+sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
+sup{top:-.5em}
+sub{bottom:-.25em}
+img{border:0}
+svg:not(:root){overflow:hidden}
+figure{margin:0}
+audio,video{display:inline-block}
+audio:not([controls]){display:none;height:0}
+fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}
+legend{border:0;padding:0}
+button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}
+button,input{line-height:normal}
+button,select{text-transform:none}
+button,html 
input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}
+button[disabled],html input[disabled]{cursor:default}
+input[type=checkbox],input[type=radio]{padding:0}
+button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
+textarea{overflow:auto;vertical-align:top}
+table{border-collapse:collapse;border-spacing:0}
+*,::before,::after{box-sizing:border-box}
+html,body{font-size:100%}
+body{background:#fff;color:rgba(0,0,0,.8);padding:0;margin:0;font-family:"Noto 
Serif","DejaVu 
Serif",serif;line-height:1;position:relative;cursor:auto;-moz-tab-size:4;-o-tab-size:4;tab-size:4;word-wrap:anywhere;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}
+a:hover{cursor:pointer}
+img,object,embed{max-width:100%;height:auto}
+object,embed{height:100%}
+img{-ms-interpolation-mode:bicubic}
+.left{float:left!important}
+.right{float:right!important}
+.text-left{text-align:left!important}
+.text-right{text-align:right!important}
+.text-center{text-align:center!important}
+.text-justify{text-align:justify!important}
+.hide{display:none}
+img,object,svg{display:inline-block;vertical-align:middle}
+textarea{height:auto;min-height:50px}
+select{width:100%}
+.subheader,.admonitionblock 
td.content>.title,.audioblock>.title,.exampleblock>.title,.imageblock>.title,.listingblock>.title,.literalblock>.title,.stemblock>.title,.openblock>.title,.paragraph>.title,.quoteblock>.title,table.tableblock>.title,.verseblock>.title,.videoblock>.title,.dlist>.title,.olist>.title,.ulist>.title,.qlist>.title,.hdlist>.title{line-height:1.45;color:#7a2518;font-weight:400;margin-top:0;margin-bottom:.25em}
+div,dl,dt,dd,ul,ol,li,h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6,pre,form,p,blockquote,th,td{margin:0;padding:0}
+a{color:#2156a5;text-decoration:underline;line-height:inherit}
+a:hover,a:focus{color:#1d4b8f}
+a img{border:0}
+p{line-height:1.6;margin-bottom:1.25em;text-rendering:optimizeLegibility}
+p aside{font-size:.875em;line-height:1.35;font-style:italic}
+h1,h2,h3,#toctitle,.sidebarblock>.content>.title,h4,h5,h6{font-family:"Open 
Sans","DejaVu 
Sans",sans-serif;font-weight:300;font-style:normal;color:#ba3925;text-rendering:optimizeLegibility;margin-top:1em;margin-bottom:.5em;line-height:1.0125em}
+h1 small,h2 small,h3 small,#toctitle small,.sidebarblock>.content>.title 
small,h4 small,h5 small,h6 small{font-size:60%;color:#e99b8f;line-height:0}
+h1{font-size:2.125em}
+h2{font-size:1.6875em}
+h3,#toctitle,.sidebarblock>.content>.title{font-size:1.375em}
+h4,h5{font-size:1.125em}
+h6{font-size:1em}
+hr{border:solid #df;border-width:1px 0 0;clear:both;margin:1.25em 0 
1.1875em}
+em,i{font-style:italic;line-height:inherit}
+strong,b{font-weight:bold;line-height:inherit}
+small{font-size:60%;line-height:inherit}
+code{font-family:"Droid Sans Mono","DejaVu Sans 

svn commit: r1915326 [3/4] - in /uima/site/trunk/uima-website: docs/ docs/d/ruta-current/ docs/d/ruta-current/css/ docs/d/ruta-current/images/ docs/d/ruta-current/issuesFixed/ docs/d/ruta-current/issu

2024-01-19 Thread rec
Added: uima/site/trunk/uima-website/docs/d/ruta-current/ruta.pdf
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/ruta.pdf?rev=1915326=auto
==
--- uima/site/trunk/uima-website/docs/d/ruta-current/ruta.pdf (added)
+++ uima/site/trunk/uima-website/docs/d/ruta-current/ruta.pdf Fri Jan 19 
12:49:00 2024
@@ -0,0 +1,119098 @@
+%PDF-1.4
+%
+1 0 obj
+<< /Title 

+/Author 

+/Creator (Asciidoctor PDF 2.3.9, based on Prawn 2.4.0)
+/Producer 

+/ModDate (D:20240115152410+01'00')
+/CreationDate (D:20240115152619+01'00')
+>>
+endobj
+2 0 obj
+<< /Type /Catalog
+/Pages 3 0 R
+/Names 12 0 R
+/Outlines 1446 0 R
+/PageLabels 1740 0 R
+/PageMode /UseOutlines
+/OpenAction [7 0 R /FitH 841.89]
+/ViewerPreferences << /DisplayDocTitle true
+>>
+>>
+endobj
+3 0 obj
+<< /Type /Pages
+/Count 144
+/Kids [7 0 R 10 0 R 18 0 R 20 0 R 22 0 R 24 0 R 26 0 R 28 0 R 30 0 R 32 0 R 34 
0 R 45 0 R 52 0 R 59 0 R 62 0 R 64 0 R 66 0 R 68 0 R 70 0 R 73 0 R 77 0 R 80 0 
R 82 0 R 88 0 R 109 0 R 123 0 R 141 0 R 158 0 R 173 0 R 187 0 R 198 0 R 208 0 R 
219 0 R 232 0 R 243 0 R 255 0 R 265 0 R 280 0 R 292 0 R 296 0 R 298 0 R 303 0 R 
306 0 R 310 0 R 320 0 R 325 0 R 332 0 R 339 0 R 342 0 R 348 0 R 351 0 R 362 0 R 
366 0 R 373 0 R 376 0 R 382 0 R 387 0 R 391 0 R 395 0 R 401 0 R 405 0 R 410 0 R 
415 0 R 420 0 R 427 0 R 431 0 R 438 0 R 443 0 R 447 0 R 452 0 R 458 0 R 463 0 R 
466 0 R 471 0 R 476 0 R 481 0 R 486 0 R 492 0 R 496 0 R 503 0 R 509 0 R 513 0 R 
519 0 R 522 0 R 526 0 R 529 0 R 532 0 R 538 0 R 543 0 R 548 0 R 551 0 R 555 0 R 
559 0 R 564 0 R 569 0 R 574 0 R 577 0 R 584 0 R 590 0 R 595 0 R 603 0 R 608 0 R 
612 0 R 616 0 R 618 0 R 630 0 R 654 0 R 669 0 R 677 0 R 682 0 R 691 0 R 696 0 R 
701 0 R 709 0 R 719 0 R 726 0 R 730 0 R 736 0 R 739 0 R 745 0 R 751 0 R 759 0 R 
765 0 R 770 0 R 774 0 R 783 0 R 787 0 R
  793 0 R 802 0 R 805 0 R 811 0 R 816 0 R 820 0 R 824 0 R 827 0 R 832 0 R 837 0 
R 839 0 R 841 0 R 844 0 R 847 0 R 850 0 R 854 0 R 859 0 R]
+>>
+endobj
+4 0 obj
+<< /Length 2
+>>
+stream
+q
+
+endstream
+endobj
+5 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 4 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+>>
+>>
+endobj
+6 0 obj
+<< /Length 570
+>>
+stream
+q
+/DeviceRGB cs
+0.6 0.6 0.6 scn
+/DeviceRGB CS
+0.6 0.6 0.6 SCN
+
+BT
+268.39525 361.6965 Td
+/F1.0 27 Tf
+[<4170616368652055494d41> 69.82422 ] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.09412 0.09412 0.09412 scn
+0.09412 0.09412 0.09412 SCN
+
+BT
+290.27471 327.22493 Td
+/F1.0 13 Tf
+[<4170616368652055494d41> 69.82422 
] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+483.53662 297.41136 Td
+/F1.0 10.5 Tf
+[<56> 60.05859 <657273696f6e20332e342e30>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+Q
+
+endstream
+endobj
+7 0 obj
+<< /Type /Page
+/Parent 3 0 R
+/MediaBox [0 0 595.28 841.89]
+/CropBox [0 0 595.28 841.89]
+/BleedBox [0 0 595.28 841.89]
+/TrimBox [0 0 595.28 841.89]
+/ArtBox [0 0 595.28 841.89]
+/Contents 6 0 R
+/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
+/Font << /F1.0 8 0 R
+>>
+>>
+>>
+endobj
+8 0 obj
+<< /Type /Font
+/BaseFont /7561d2+NotoSerif
+/Subtype /TrueType
+/FontDescriptor 1745 0 R
+/FirstChar 32
+/LastChar 255
+/Widths 1747 0 R
+/ToUnicode 1746 0 R
+>>
+endobj
+9 0 obj
+<< /Length 3881
+>>
+stream
+q
+/DeviceRGB cs
+0.2 0.2 0.2 scn
+/DeviceRGB CS
+0.2 0.2 0.2 SCN
+
+BT
+48.24 791.07743 Td
+/F1.0 13 Tf
+[<436f70> 20.01953 
<79726967687420a92032303233205468652041706163686520536f6674776172652046> 
40.03906 <6f756e646174696f6e>] TJ
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 755.66886 Td
+/F2.0 13 Tf
+<4c6963656e736520616e6420446973636c61696d6572> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.83312 Tw
+
+BT
+48.24 729.10886 Td
+/F1.0 10.5 Tf
+[<54686520415346206c6963656e736573207468697320646f63756d656e746174696f6e20746f20796f7520756e6465722074686520417061636865204c6963656e73652c2056>
 60.05859 <657273696f6e20322e30202874686520224c6963656e736522293b>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+0.37514 Tw
+
+BT
+48.24 713.32886 Td
+/F1.0 10.5 Tf
+[<796f75206d61> 20.01953 
<79206e6f7420757365207468697320646f63756d656e746174696f6e2065786365707420696e20636f6d706c69616e6365207769746820746865204c6963656e73652e2059>
 69.82422 <6f75206d61> 20.01953 <79206f627461696e206120636f70> 20.01953 <79>] TJ
+ET
+
+
+0.0 Tw
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.2 0.2 0.2 scn
+0.2 0.2 0.2 SCN
+
+BT
+48.24 697.54886 Td
+/F1.0 10.5 Tf
+<6f6620746865204c6963656e7365206174> Tj
+ET
+
+0.0 0.0 0.0 SCN
+0.0 0.0 0.0 scn
+0.25882 0.5451 0.79216 scn
+0.25882 0.5451 0.79216 SCN
+
+BT
+187.61483 669.76886 Td
+/F1.0 10.5 Tf
+[<687474703a2f2f77> 

svn commit: r1915326 [1/4] - in /uima/site/trunk/uima-website: docs/ docs/d/ruta-current/ docs/d/ruta-current/css/ docs/d/ruta-current/images/ docs/d/ruta-current/issuesFixed/ docs/d/ruta-current/issu

2024-01-19 Thread rec
Author: rec
Date: Fri Jan 19 12:49:00 2024
New Revision: 1915326

URL: http://svn.apache.org/viewvc?rev=1915326=rev
Log:
Apache UIMA Ruta 3.4.0

Added:

uima/site/trunk/uima-website/docs/d/ruta-current/issuesFixed/github-report.md
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/
uima/site/trunk/uima-website/docs/d/ruta-current/ruta.html
uima/site/trunk/uima-website/docs/d/ruta-current/ruta.pdf
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/.DS_Store   (with 
props)
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/language/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/language/basic_token/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/language/basic_token/basic_token.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/apply/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/apply/apply.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/cde/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/cde/cde.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/check/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/check/check.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/create_tree_lists/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/create_tree_lists/create_tree_lists.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/explain/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/explain/applied_rules_view.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/explain/created_by.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/explain/matched_and_failed.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/explain/rule_elements.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/explain/statistics.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/install/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/install/update.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/overview/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/overview/screenshot_ruta_perspective_.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/projects/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/projects/test_project.PNG
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/projects/wizard1.PNG
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/projects/wizard2.PNG
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/query/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/query/Query2.2.0.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/ruta/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/ruta/AnnotationBrowser_2.2.0.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/ruta/selection.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/testing/

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/testing/annotation_test_initial_view_2_2_0.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/testing/annotation_test_test_run_2_2_0.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/testing/excluded_types.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/testing/preference_2_2_0.png
   (with props)

uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench

svn commit: r1915326 [4/4] - in /uima/site/trunk/uima-website: docs/ docs/d/ruta-current/ docs/d/ruta-current/css/ docs/d/ruta-current/images/ docs/d/ruta-current/issuesFixed/ docs/d/ruta-current/issu

2024-01-19 Thread rec
Added: uima/site/trunk/uima-website/docs/d/ruta-current/ruta/.DS_Store
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/ruta/.DS_Store?rev=1915326=auto
==
Binary file - no diff available.

Propchange: uima/site/trunk/uima-website/docs/d/ruta-current/ruta/.DS_Store
--
svn:mime-type = application/octet-stream

Added: 
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/language/basic_token/basic_token.png
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/language/basic_token/basic_token.png?rev=1915326=auto
==
Binary file - no diff available.

Propchange: 
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/language/basic_token/basic_token.png
--
svn:mime-type = application/octet-stream

Added: 
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/apply/apply.png
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/apply/apply.png?rev=1915326=auto
==
Binary file - no diff available.

Propchange: 
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/apply/apply.png
--
svn:mime-type = application/octet-stream

Added: 
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/cde/cde.png
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/cde/cde.png?rev=1915326=auto
==
Binary file - no diff available.

Propchange: 
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/cde/cde.png
--
svn:mime-type = application/octet-stream

Added: 
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/check/check.png
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/check/check.png?rev=1915326=auto
==
Binary file - no diff available.

Propchange: 
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/check/check.png
--
svn:mime-type = application/octet-stream

Added: 
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/create_tree_lists/create_tree_lists.png
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/create_tree_lists/create_tree_lists.png?rev=1915326=auto
==
Binary file - no diff available.

Propchange: 
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/create_tree_lists/create_tree_lists.png
--
svn:mime-type = application/octet-stream

Added: 
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/explain/applied_rules_view.png
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/explain/applied_rules_view.png?rev=1915326=auto
==
Binary file - no diff available.

Propchange: 
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/explain/applied_rules_view.png
--
svn:mime-type = application/octet-stream

Added: 
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/explain/created_by.png
URL: 
http://svn.apache.org/viewvc/uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/explain/created_by.png?rev=1915326=auto
==
Binary file - no diff available.

Propchange: 
uima/site/trunk/uima-website/docs/d/ruta-current/ruta/images/tools/ruta/workbench/explain/created_by.png
--
svn:mime-type = application/octet-stream

Added: 

svn commit: r1915324 - /uima/site/archive/docs/d/ruta-3.3.0/

2024-01-19 Thread rec
Author: rec
Date: Fri Jan 19 12:33:47 2024
New Revision: 1915324

URL: http://svn.apache.org/viewvc?rev=1915324=rev
Log:
Creating versioned copy of current release documentation in archive

Added:
uima/site/archive/docs/d/ruta-3.3.0/
  - copied from r1915323, uima/site/trunk/uima-website/docs/d/ruta-current/



(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 deleted (was 4fa4df4a)

2024-01-19 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


 was 4fa4df4a [maven-release-plugin] prepare for next development iteration

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(uima-ruta) branch main updated (b7eca94d -> cd8ee4b4)

2024-01-19 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from b7eca94d Merge pull request #158 from 
apache/refactoring/157-Mark-Maven-Mojos-as-thread-safe
 add 67c4ce5d Issue #146: Apache UIMA Ruta 3.4.0
 add 56f2cf63 Issue #146: Apache UIMA Ruta 3.4.0
 add af04fa54 Issue #146: Apache UIMA Ruta 3.4.0
 add 30b244b0 Merge branch 'main' into release/146-Apache-UIMA-Ruta-3.4.0
 add aeaa1ad9 Issue #146: Apache UIMA Ruta 3.4.0
 add d56511dd Issue #146: Apache UIMA Ruta 3.4.0
 add bb7f4a04 [maven-release-plugin] prepare release ruta-3.4.0
 add 069eb938 [maven-release-plugin] prepare for next development iteration
 add c06f046b Merge branch 'main' into release/146-Apache-UIMA-Ruta-3.4.0
 add 1c6d2982 No issue: Set version back to 3.4.0-SNAPSHOT
 add 713e2d20 Issue #146: Apache UIMA Ruta 3.4.0
 add 167560c3 [maven-release-plugin] prepare release ruta-3.4.0
 add 4fa4df4a [maven-release-plugin] prepare for next development iteration
 new cd8ee4b4 Merge pull request #150 from 
apache/release/146-Apache-UIMA-Ruta-3.4.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.md  | 12 
 RELEASE_NOTES.md   | 34 --
 .../ruta-ep-example-extensions/pom.xml |  2 +-
 example-projects/ruta-maven-example/pom.xml|  4 +--
 pom.xml|  8 ++---
 ruta-core-ext/pom.xml  |  4 +--
 ruta-core/pom.xml  |  4 +--
 ruta-documentation/pom.xml |  2 +-
 ruta-eclipse-feature/feature.xml   |  2 +-
 ruta-eclipse-feature/pom.xml   | 20 ++---
 ruta-eclipse-update-site/category.xml  |  2 +-
 ruta-eclipse-update-site/pom.xml   |  6 ++--
 ruta-ep-addons/pom.xml |  4 +--
 ruta-ep-caseditor/pom.xml  |  4 +--
 ruta-ep-core-ext/pom.xml   |  4 +--
 ruta-ep-engine/pom.xml |  4 +--
 ruta-ep-engine/src/main/readme_bin/LICENSE | 29 --
 ruta-ep-engine/src/main/readme_bin/NOTICE  |  2 +-
 ruta-ep-ide-ui/pom.xml |  4 +--
 ruta-ep-ide/pom.xml|  4 +--
 ruta-ep-parent/pom.xml |  4 +--
 ruta-ep-textruler/pom.xml  |  4 +--
 ruta-maven-archetype/pom.xml   |  4 +--
 ruta-maven-plugin/pom.xml  |  4 +--
 ruta-parent/pom.xml|  4 +--
 25 files changed, 100 insertions(+), 75 deletions(-)



(uima-ruta) 01/01: Merge pull request #150 from apache/release/146-Apache-UIMA-Ruta-3.4.0

2024-01-19 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit cd8ee4b47f75467d5cad63623c3ed4e047f2039c
Merge: b7eca94d 4fa4df4a
Author: Richard Eckart de Castilho 
AuthorDate: Fri Jan 19 13:20:25 2024 +0100

Merge pull request #150 from apache/release/146-Apache-UIMA-Ruta-3.4.0

Issue #146: Apache UIMA Ruta 3.4.0

 README.md  | 12 
 RELEASE_NOTES.md   | 34 --
 .../ruta-ep-example-extensions/pom.xml |  2 +-
 example-projects/ruta-maven-example/pom.xml|  4 +--
 pom.xml|  8 ++---
 ruta-core-ext/pom.xml  |  4 +--
 ruta-core/pom.xml  |  4 +--
 ruta-documentation/pom.xml |  2 +-
 ruta-eclipse-feature/feature.xml   |  2 +-
 ruta-eclipse-feature/pom.xml   | 20 ++---
 ruta-eclipse-update-site/category.xml  |  2 +-
 ruta-eclipse-update-site/pom.xml   |  6 ++--
 ruta-ep-addons/pom.xml |  4 +--
 ruta-ep-caseditor/pom.xml  |  4 +--
 ruta-ep-core-ext/pom.xml   |  4 +--
 ruta-ep-engine/pom.xml |  4 +--
 ruta-ep-engine/src/main/readme_bin/LICENSE | 29 --
 ruta-ep-engine/src/main/readme_bin/NOTICE  |  2 +-
 ruta-ep-ide-ui/pom.xml |  4 +--
 ruta-ep-ide/pom.xml|  4 +--
 ruta-ep-parent/pom.xml |  4 +--
 ruta-ep-textruler/pom.xml  |  4 +--
 ruta-maven-archetype/pom.xml   |  4 +--
 ruta-maven-plugin/pom.xml  |  4 +--
 ruta-parent/pom.xml|  4 +--
 25 files changed, 100 insertions(+), 75 deletions(-)



(uima-ruta) annotated tag ruta-3.4.0 deleted (was 55bdc192)

2024-01-19 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to annotated tag ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


*** WARNING: tag ruta-3.4.0 was deleted! ***

   tag was  55bdc192

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(uima-ruta) annotated tag rel/ruta-3.4.0 updated (167560c3 -> ec55754e)

2024-01-19 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to annotated tag rel/ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


*** WARNING: tag rel/ruta-3.4.0 was modified! ***

from 167560c3 (commit)
  to ec55754e (tag)
 tagging 167560c3b5ef20d622b288f24cd76a63bbbed1b0 (commit)
 replaces rel/ruta-3.3.0
  by Richard Eckart de Castilho
  on Fri Jan 19 13:19:42 2024 +0100

- Log -
---


No new revisions were added by this update.

Summary of changes:



svn commit: r66714 - in /release/uima: eclipse-update-site-v3/ruta/ ruta-3.4.0/eclipse-update-site/

2024-01-19 Thread rec
Author: rec
Date: Fri Jan 19 12:16:37 2024
New Revision: 66714

Log:
Installing Ruta 3.4.0 update site from accepted RC2

Added:
release/uima/eclipse-update-site-v3/ruta/
  - copied from r66713, release/uima/ruta-3.4.0/eclipse-update-site/
Removed:
release/uima/ruta-3.4.0/eclipse-update-site/



svn commit: r66713 - /release/uima/eclipse-update-site-v3/ruta/

2024-01-19 Thread rec
Author: rec
Date: Fri Jan 19 12:15:57 2024
New Revision: 66713

Log:
Removing previous update site to make space for new one

Removed:
release/uima/eclipse-update-site-v3/ruta/



svn commit: r66712 - /release/uima/archive-eclipse-update-site/ruta-3.3.0/

2024-01-19 Thread rec
Author: rec
Date: Fri Jan 19 12:14:58 2024
New Revision: 66712

Log:
Create eclipse plugin archive for ruta 3.3.0

Added:
release/uima/archive-eclipse-update-site/ruta-3.3.0/
  - copied from r66711, release/uima/eclipse-update-site-v3/ruta/



svn commit: r66711 - /dev/uima/ruta-3.4.0-RC-202401151426-167560c/ /release/uima/ruta-3.4.0/

2024-01-19 Thread rec
Author: rec
Date: Fri Jan 19 12:12:49 2024
New Revision: 66711

Log:
Move final release candidate to dist spot

Added:
release/uima/ruta-3.4.0/
  - copied from r66710, dev/uima/ruta-3.4.0-RC-202401151426-167560c/
Removed:
dev/uima/ruta-3.4.0-RC-202401151426-167560c/



svn commit: r66710 - /dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/

2024-01-19 Thread rec
Author: rec
Date: Fri Jan 19 12:11:35 2024
New Revision: 66710

Log: (empty)

Removed:
dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/



svn commit: r66619 - in /dev/uima/ruta-3.4.0-RC-202401151426-167560c: ./ eclipse-update-site/ eclipse-update-site/META-INF/ eclipse-update-site/features/ eclipse-update-site/plugins/

2024-01-15 Thread rec
Author: rec
Date: Mon Jan 15 14:27:26 2024
New Revision: 66619

Log:
Staging release artifacts for ruta-3.4.0-RC-202401151426-167560c

Added:
dev/uima/ruta-3.4.0-RC-202401151426-167560c/
dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/
dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/META-INF/

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/META-INF/DEPENDENCIES

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/META-INF/LICENSE

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/META-INF/NOTICE

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/artifacts.jar   
(with props)

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/artifacts.jar.asc

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/artifacts.jar.sha512

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/artifacts.xml.xz
   (with props)

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/artifacts.xml.xz.asc

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/artifacts.xml.xz.sha512
dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/content.jar 
  (with props)

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/content.jar.asc

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/content.jar.sha512

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/content.xml.xz  
 (with props)

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/content.xml.xz.asc

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/content.xml.xz.sha512
dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/features/

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/features/org.apache.uima.ruta.feature_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/features/org.apache.uima.ruta.feature_3.4.0.jar.asc

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/features/org.apache.uima.ruta.feature_3.4.0.jar.sha512
dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/p2.index
dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/p2.index.asc

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/p2.index.sha512
dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.addons_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.addons_3.4.0.jar.asc

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.addons_3.4.0.jar.sha512

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.caseditor_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.caseditor_3.4.0.jar.asc

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.caseditor_3.4.0.jar.sha512

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.core.ext_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.core.ext_3.4.0.jar.asc

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.core.ext_3.4.0.jar.sha512

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.engine_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.engine_3.4.0.jar.asc

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.engine_3.4.0.jar.sha512

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.ide.ui_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.ide.ui_3.4.0.jar.asc

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.ide.ui_3.4.0.jar.sha512

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.ide_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.ide_3.4.0.jar.asc

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.ide_3.4.0.jar.sha512

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.textruler_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202401151426-167560c/eclipse-update-site/plugins/org.apache.uima.ruta.textruler_3.4.0.jar.asc

dev/uima/ruta

(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 updated (167560c3 -> 4fa4df4a)

2024-01-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 167560c3 [maven-release-plugin] prepare release ruta-3.4.0
 add 4fa4df4a [maven-release-plugin] prepare for next development iteration

No new revisions were added by this update.

Summary of changes:
 example-projects/ruta-ep-example-extensions/pom.xml |  2 +-
 example-projects/ruta-maven-example/pom.xml |  2 +-
 pom.xml |  6 +++---
 ruta-core-ext/pom.xml   |  2 +-
 ruta-core/pom.xml   |  2 +-
 ruta-documentation/pom.xml  |  2 +-
 ruta-eclipse-feature/feature.xml|  2 +-
 ruta-eclipse-feature/pom.xml| 16 
 ruta-eclipse-update-site/category.xml   |  2 +-
 ruta-eclipse-update-site/pom.xml|  4 ++--
 ruta-ep-addons/pom.xml  |  2 +-
 ruta-ep-caseditor/pom.xml   |  2 +-
 ruta-ep-core-ext/pom.xml|  2 +-
 ruta-ep-engine/pom.xml  |  2 +-
 ruta-ep-ide-ui/pom.xml  |  2 +-
 ruta-ep-ide/pom.xml |  2 +-
 ruta-ep-parent/pom.xml  |  2 +-
 ruta-ep-textruler/pom.xml   |  2 +-
 ruta-maven-archetype/pom.xml|  2 +-
 ruta-maven-plugin/pom.xml   |  2 +-
 ruta-parent/pom.xml |  2 +-
 21 files changed, 31 insertions(+), 31 deletions(-)



(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 updated (713e2d20 -> 167560c3)

2024-01-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 713e2d20 Issue #146: Apache UIMA Ruta 3.4.0
 add 167560c3 [maven-release-plugin] prepare release ruta-3.4.0

No new revisions were added by this update.

Summary of changes:
 example-projects/ruta-ep-example-extensions/pom.xml |  2 +-
 example-projects/ruta-maven-example/pom.xml |  2 +-
 pom.xml |  6 +++---
 ruta-core-ext/pom.xml   |  2 +-
 ruta-core/pom.xml   |  2 +-
 ruta-documentation/pom.xml  |  2 +-
 ruta-eclipse-feature/feature.xml|  2 +-
 ruta-eclipse-feature/pom.xml| 16 
 ruta-eclipse-update-site/category.xml   |  2 +-
 ruta-eclipse-update-site/pom.xml|  4 ++--
 ruta-ep-addons/pom.xml  |  2 +-
 ruta-ep-caseditor/pom.xml   |  2 +-
 ruta-ep-core-ext/pom.xml|  2 +-
 ruta-ep-engine/pom.xml  |  2 +-
 ruta-ep-ide-ui/pom.xml  |  2 +-
 ruta-ep-ide/pom.xml |  2 +-
 ruta-ep-parent/pom.xml  |  2 +-
 ruta-ep-textruler/pom.xml   |  2 +-
 ruta-maven-archetype/pom.xml|  2 +-
 ruta-maven-plugin/pom.xml   |  2 +-
 ruta-parent/pom.xml |  2 +-
 21 files changed, 31 insertions(+), 31 deletions(-)



(uima-ruta) annotated tag ruta-3.4.0 updated (167560c3 -> 55bdc192)

2024-01-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to annotated tag ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


*** WARNING: tag ruta-3.4.0 was modified! ***

from 167560c3 (commit)
  to 55bdc192 (tag)
 tagging 167560c3b5ef20d622b288f24cd76a63bbbed1b0 (commit)
 replaces rel/ruta-3.3.0
  by noname
  on Mon Jan 15 15:23:48 2024 +0100

- Log -
[maven-release-plugin] copy for tag ruta-3.4.0
---


No new revisions were added by this update.

Summary of changes:



(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 updated (1c6d2982 -> 713e2d20)

2024-01-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 1c6d2982 No issue: Set version back to 3.4.0-SNAPSHOT
 add 713e2d20 Issue #146: Apache UIMA Ruta 3.4.0

No new revisions were added by this update.

Summary of changes:
 RELEASE_NOTES.md | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)



(uima-ruta) annotated tag ruta-3.4.0 deleted (was d7d635bc)

2024-01-11 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to annotated tag ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


*** WARNING: tag ruta-3.4.0 was deleted! ***

   tag was  d7d635bc

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 updated: No issue: Set version back to 3.4.0-SNAPSHOT

2024-01-11 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


The following commit(s) were added to 
refs/heads/release/146-Apache-UIMA-Ruta-3.4.0 by this push:
 new 1c6d2982 No issue: Set version back to 3.4.0-SNAPSHOT
1c6d2982 is described below

commit 1c6d29823a5e6afea09d540add87e55e6fac4626
Author: Richard Eckart de Castilho 
AuthorDate: Thu Jan 11 21:20:47 2024 +0100

No issue: Set version back to 3.4.0-SNAPSHOT
---
 example-projects/ruta-ep-example-extensions/pom.xml |  2 +-
 example-projects/ruta-maven-example/pom.xml |  2 +-
 pom.xml |  2 +-
 ruta-core-ext/pom.xml   |  2 +-
 ruta-core/pom.xml   |  2 +-
 ruta-documentation/pom.xml  |  2 +-
 ruta-eclipse-feature/pom.xml| 16 
 ruta-eclipse-update-site/pom.xml|  4 ++--
 ruta-ep-addons/pom.xml  |  2 +-
 ruta-ep-caseditor/pom.xml   |  2 +-
 ruta-ep-core-ext/pom.xml|  2 +-
 ruta-ep-engine/pom.xml  |  2 +-
 ruta-ep-ide-ui/pom.xml  |  2 +-
 ruta-ep-ide/pom.xml |  2 +-
 ruta-ep-parent/pom.xml  |  2 +-
 ruta-ep-textruler/pom.xml   |  2 +-
 ruta-maven-archetype/pom.xml|  2 +-
 ruta-maven-plugin/pom.xml   |  2 +-
 ruta-parent/pom.xml |  2 +-
 19 files changed, 27 insertions(+), 27 deletions(-)

diff --git a/example-projects/ruta-ep-example-extensions/pom.xml 
b/example-projects/ruta-ep-example-extensions/pom.xml
index 8952c185..1875c532 100644
--- a/example-projects/ruta-ep-example-extensions/pom.xml
+++ b/example-projects/ruta-ep-example-extensions/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.uima
 ruta-ep-parent
-3.4.1-SNAPSHOT
+3.4.0-SNAPSHOT
 ../../ruta-ep-parent/pom.xml
   
 
diff --git a/example-projects/ruta-maven-example/pom.xml 
b/example-projects/ruta-maven-example/pom.xml
index d241ca62..fff38608 100644
--- a/example-projects/ruta-maven-example/pom.xml
+++ b/example-projects/ruta-maven-example/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.uima
 ruta-parent
-3.4.1-SNAPSHOT
+3.4.0-SNAPSHOT
 ../../ruta-parent/pom.xml
   
   ${uimaWebsiteUrl}
diff --git a/pom.xml b/pom.xml
index 9281caa3..c32016c8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.uima
 ruta-parent
-3.4.1-SNAPSHOT
+3.4.0-SNAPSHOT
 ruta-parent/pom.xml
   
 
diff --git a/ruta-core-ext/pom.xml b/ruta-core-ext/pom.xml
index 9eb7be78..417b54b4 100644
--- a/ruta-core-ext/pom.xml
+++ b/ruta-core-ext/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.uima
 ruta-parent
-3.4.1-SNAPSHOT
+3.4.0-SNAPSHOT
 ../ruta-parent/pom.xml
   
 
diff --git a/ruta-core/pom.xml b/ruta-core/pom.xml
index cbea8efb..feeb815d 100644
--- a/ruta-core/pom.xml
+++ b/ruta-core/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.uima
 ruta-parent
-3.4.1-SNAPSHOT
+3.4.0-SNAPSHOT
 ../ruta-parent/pom.xml
   
 
diff --git a/ruta-documentation/pom.xml b/ruta-documentation/pom.xml
index 749727d8..864e9e57 100644
--- a/ruta-documentation/pom.xml
+++ b/ruta-documentation/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.uima
 ruta-parent
-3.4.1-SNAPSHOT
+3.4.0-SNAPSHOT
 ../ruta-parent/pom.xml
   
 
diff --git a/ruta-eclipse-feature/pom.xml b/ruta-eclipse-feature/pom.xml
index eefa00e6..cf3d251e 100644
--- a/ruta-eclipse-feature/pom.xml
+++ b/ruta-eclipse-feature/pom.xml
@@ -23,7 +23,7 @@
   
 org.apache.uima
 ruta-parent
-3.4.1-SNAPSHOT
+3.4.0-SNAPSHOT
 ../ruta-parent/pom.xml
   
 
@@ -90,37 +90,37 @@
 
   org.apache.uima
   ruta-ep-addons
-  3.4.1-SNAPSHOT
+  3.4.0-SNAPSHOT
 
 
   org.apache.uima
   ruta-ep-caseditor
-  3.4.1-SNAPSHOT
+  3.4.0-SNAPSHOT
 
 
   org.apache.uima
   ruta-ep-core-ext
-  3.4.1-SNAPSHOT
+  3.4.0-SNAPSHOT
 
 
   org.apache.uima
   ruta-ep-engine
-  3.4.1-SNAPSHOT
+  3.4.0-SNAPSHOT
 
 
   org.apache.uima
   ruta-ep-ide
-  3.4.1-SNAPSHOT
+  3.4.0-SNAPSHOT
 
 
   org.apache.uima
   ruta-ep-ide-ui
-  3.4.1-SNAPSHOT
+  3.4.0-SNAPSHOT
 
 
   org.apache.uima
   ruta-ep-textruler
-  3.4.1-SNAPSHOT
+  3.4.0-SNAPSHOT
 
   
 
\ No newline at end of file
diff --git a/ruta-eclipse-update-site/pom.xml b/ruta-eclipse-update-site/pom.xml
index 61bfa2e9..17f43b41 100644
--- a/ruta-eclipse-update-site/pom.xml
+++ b/ruta-eclipse-update-site/pom.xml
@@ -24,7 +24,7 @@
   
 org.apache.uima
 ruta-parent

(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 updated (069eb938 -> c06f046b)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 069eb938 [maven-release-plugin] prepare for next development iteration
 add dcbe0679 Issue #155: UIMA Core plugins not found when installing Ruta
 add 21729f5e Issue #151: Unable to use Ruta Query view in Ruta 3.4.0-RC-1
 add ae7e8068 Issue #152: Better error messages in query view
 add 3d2d94d3 Merge pull request #153 from 
apache/feature/152-Better-error-messages-in-query-view
 add e372c191 Merge branch 'main' into 
bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1
 add 462cb628 Merge pull request #154 from 
apache/bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1
 add c640e0a9 Merge branch 'main' into 
bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta
 add 3ef73c20 Merge pull request #156 from 
apache/bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta
 add 1852e9b7 Issue #157: Mark Maven Mojos as thread-safe
 add b7eca94d Merge pull request #158 from 
apache/refactoring/157-Mark-Maven-Mojos-as-thread-safe
 add c06f046b Merge branch 'main' into release/146-Apache-UIMA-Ruta-3.4.0

No new revisions were added by this update.

Summary of changes:
 ruta-eclipse-feature/feature.xml   |   4 +-
 ruta-eclipse-update-site/category.xml  |   4 +-
 .../uima/ruta/query/ui/QueryActionHandler.java |  63 +++---
 .../apache/uima/ruta/query/ui/QueryComposite.java  | 139 ++---
 ruta-ep-core-ext/pom.xml   |  27 ++--
 ruta-ep-engine/pom.xml |   2 -
 .../ruta/maven/RutaGenerateDescriptorMojo.java |  24 ++--
 .../uima/ruta/maven/RutaGenerateMTWLMojo.java  |   2 +-
 .../uima/ruta/maven/RutaGenerateTWLMojo.java   |   2 +-
 ruta-parent/pom.xml|   5 +
 10 files changed, 150 insertions(+), 122 deletions(-)



(uima-ruta) 01/01: Merge pull request #158 from apache/refactoring/157-Mark-Maven-Mojos-as-thread-safe

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit b7eca94d6ac042ec05ca956e95b5b29e26438530
Merge: 3ef73c20 1852e9b7
Author: Richard Eckart de Castilho 
AuthorDate: Wed Jan 10 16:23:48 2024 +0100

Merge pull request #158 from 
apache/refactoring/157-Mark-Maven-Mojos-as-thread-safe

Issue #157: Mark Maven Mojos as thread-safe

 .../ruta/maven/RutaGenerateDescriptorMojo.java | 24 +++---
 .../uima/ruta/maven/RutaGenerateMTWLMojo.java  |  2 +-
 .../uima/ruta/maven/RutaGenerateTWLMojo.java   |  2 +-
 3 files changed, 14 insertions(+), 14 deletions(-)



(uima-ruta) branch refactoring/157-Mark-Maven-Mojos-as-thread-safe deleted (was 1852e9b7)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch refactoring/157-Mark-Maven-Mojos-as-thread-safe
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


 was 1852e9b7 Issue #157: Mark Maven Mojos as thread-safe

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(uima-ruta) branch main updated (3ef73c20 -> b7eca94d)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 3ef73c20 Merge pull request #156 from 
apache/bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta
 add 1852e9b7 Issue #157: Mark Maven Mojos as thread-safe
 new b7eca94d Merge pull request #158 from 
apache/refactoring/157-Mark-Maven-Mojos-as-thread-safe

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../ruta/maven/RutaGenerateDescriptorMojo.java | 24 +++---
 .../uima/ruta/maven/RutaGenerateMTWLMojo.java  |  2 +-
 .../uima/ruta/maven/RutaGenerateTWLMojo.java   |  2 +-
 3 files changed, 14 insertions(+), 14 deletions(-)



(uima-ruta) 01/01: Issue #157: Mark Maven Mojos as thread-safe

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch refactoring/157-Mark-Maven-Mojos-as-thread-safe
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 1852e9b7d712c31f3713740508882f2f35069691
Author: Richard Eckart de Castilho 
AuthorDate: Wed Jan 10 15:51:00 2024 +0100

Issue #157: Mark Maven Mojos as thread-safe

- Marked mojos as thread-safe
---
 .../ruta/maven/RutaGenerateDescriptorMojo.java | 24 +++---
 .../uima/ruta/maven/RutaGenerateMTWLMojo.java  |  2 +-
 .../uima/ruta/maven/RutaGenerateTWLMojo.java   |  2 +-
 3 files changed, 14 insertions(+), 14 deletions(-)

diff --git 
a/ruta-maven-plugin/src/main/java/org/apache/uima/ruta/maven/RutaGenerateDescriptorMojo.java
 
b/ruta-maven-plugin/src/main/java/org/apache/uima/ruta/maven/RutaGenerateDescriptorMojo.java
index 71cf760e..5dfc507f 100644
--- 
a/ruta-maven-plugin/src/main/java/org/apache/uima/ruta/maven/RutaGenerateDescriptorMojo.java
+++ 
b/ruta-maven-plugin/src/main/java/org/apache/uima/ruta/maven/RutaGenerateDescriptorMojo.java
@@ -85,7 +85,7 @@ import org.xml.sax.SAXException;
  * Generate descriptors from UIMA Ruta script files.
  * 
  */
-@Mojo(name = "generate", defaultPhase = GENERATE_RESOURCES, 
requiresDependencyResolution = TEST, requiresDependencyCollection = TEST)
+@Mojo(name = "generate", defaultPhase = GENERATE_RESOURCES, 
requiresDependencyResolution = TEST, requiresDependencyCollection = TEST, 
threadSafe = true)
 public class RutaGenerateDescriptorMojo extends AbstractMojo {
   private static final String RUTA_BUILD_VARS = "RUTA_BUILD_VARS";
 
@@ -448,8 +448,8 @@ public class RutaGenerateDescriptorMojo extends 
AbstractMojo {
 }
   }
 
-  public static URLClassLoader getClassloader(MavenProject project, Log aLog, 
String includeScopeThreshold)
-  throws MojoExecutionException {
+  public static URLClassLoader getClassloader(MavenProject project, Log aLog,
+  String includeScopeThreshold) throws MojoExecutionException {
 
 List urls = new ArrayList();
 
@@ -493,7 +493,7 @@ public class RutaGenerateDescriptorMojo extends 
AbstractMojo {
   throw new MojoExecutionException(
   "Unable to resolve dependencies: " + 
ExceptionUtils.getRootCauseMessage(e), e);
 }
-
+
 ScopeArtifactFilter filter = new 
ScopeArtifactFilter(includeScopeThreshold);
 for (Artifact dep : (Set) project.getArtifacts()) {
   try {
@@ -503,15 +503,15 @@ public class RutaGenerateDescriptorMojo extends 
AbstractMojo {
   + ")");
   continue;
 }
-
+
 if (dep.getFile() == null) {
   aLog.debug("Not generating classpath entry for unresolved artifact: 
" + dep.getGroupId()
-  + ":" + dep.getArtifactId() + ":" + dep.getVersion()+ " (" + 
dep.getScope()
+  + ":" + dep.getArtifactId() + ":" + dep.getVersion() + " (" 
+ dep.getScope()
   + ")");
   // Unresolved file because it is in the wrong scope (e.g. test?)
   continue;
 }
-
+
 aLog.debug("Classpath entry: " + dep.getGroupId() + ":" + 
dep.getArtifactId() + ":"
 + dep.getVersion() + " -> " + dep.getFile());
 urls.add(dep.getFile().toURI().toURL());
@@ -521,7 +521,7 @@ public class RutaGenerateDescriptorMojo extends 
AbstractMojo {
 + ExceptionUtils.getRootCauseMessage(e), e);
   }
 }
-
+
 return new URLClassLoader(urls.toArray(new URL[] {}),
 RutaGenerateDescriptorMojo.class.getClassLoader());
   }
@@ -560,7 +560,7 @@ public class RutaGenerateDescriptorMojo extends 
AbstractMojo {
   // Xpp3DomWriter creates empty string with file writer, check before 
writing to file
   if (!StringUtils.isBlank(string)) {
 try (Writer os = new OutputStreamWriter(new 
FileOutputStream(projectFile), UTF_8)) {
-os.write(string);
+  os.write(string);
 } catch (IOException e) {
   handleError("Failed to write .project file", e);
 }
@@ -600,9 +600,9 @@ public class RutaGenerateDescriptorMojo extends 
AbstractMojo {
 String string = sw.toString();
 // Xpp3DomWriter creates empty string with file writer, check before 
writing to file
 if (!StringUtils.isBlank(string)) {
-try (Writer os = new OutputStreamWriter(new 
FileOutputStream(buildpathFile), UTF_8)) {
-os.write(string);
-} catch (IOException e) {
+  try (Writer os = new OutputStreamWriter(new 
FileOutputStream(buildpathFile), UTF_8)) {
+os.write(string);
+  } catch (IOException e) {
 handleError("Failed to write .buildpath file", e);
   }
 }
diff --git 
a/ruta-maven-plugin/src/main/jav

(uima-ruta) branch refactoring/157-Mark-Maven-Mojos-as-thread-safe created (now 1852e9b7)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch refactoring/157-Mark-Maven-Mojos-as-thread-safe
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


  at 1852e9b7 Issue #157: Mark Maven Mojos as thread-safe

This branch includes the following new commits:

 new 1852e9b7 Issue #157: Mark Maven Mojos as thread-safe

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




(uima-ruta) branch bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta deleted (was c640e0a9)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch 
bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


 was c640e0a9 Merge branch 'main' into 
bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(uima-ruta) 01/01: Merge pull request #156 from apache/bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 3ef73c20c68c209bed7cc8179f452645623401fe
Merge: 462cb628 c640e0a9
Author: Richard Eckart de Castilho 
AuthorDate: Wed Jan 10 15:38:57 2024 +0100

Merge pull request #156 from 
apache/bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta

Issue #155: UIMA Core plugins not found when installing Ruta

 ruta-eclipse-feature/feature.xml  | 2 +-
 ruta-eclipse-update-site/category.xml | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)



(uima-ruta) branch main updated (462cb628 -> 3ef73c20)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 462cb628 Merge pull request #154 from 
apache/bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1
 add dcbe0679 Issue #155: UIMA Core plugins not found when installing Ruta
 add c640e0a9 Merge branch 'main' into 
bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta
 new 3ef73c20 Merge pull request #156 from 
apache/bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ruta-eclipse-feature/feature.xml  | 2 +-
 ruta-eclipse-update-site/category.xml | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)



(uima-ruta) branch bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta updated (dcbe0679 -> c640e0a9)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch 
bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from dcbe0679 Issue #155: UIMA Core plugins not found when installing Ruta
 add 21729f5e Issue #151: Unable to use Ruta Query view in Ruta 3.4.0-RC-1
 add ae7e8068 Issue #152: Better error messages in query view
 add 3d2d94d3 Merge pull request #153 from 
apache/feature/152-Better-error-messages-in-query-view
 add e372c191 Merge branch 'main' into 
bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1
 add 462cb628 Merge pull request #154 from 
apache/bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1
 add c640e0a9 Merge branch 'main' into 
bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta

No new revisions were added by this update.

Summary of changes:
 .../uima/ruta/query/ui/QueryActionHandler.java |  63 +++---
 .../apache/uima/ruta/query/ui/QueryComposite.java  | 139 ++---
 ruta-ep-core-ext/pom.xml   |  27 ++--
 ruta-ep-engine/pom.xml |   2 -
 ruta-parent/pom.xml|   5 +
 5 files changed, 132 insertions(+), 104 deletions(-)



(uima-ruta) 01/01: Merge pull request #154 from apache/bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 462cb628ee5bd70dcd10ed01f2f3e85b4b3c33ba
Merge: 3d2d94d3 e372c191
Author: Richard Eckart de Castilho 
AuthorDate: Wed Jan 10 14:23:37 2024 +0100

Merge pull request #154 from 
apache/bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1

Issue #151: Unable to use Ruta Query view in Ruta 3.4.0-RC-1

 ruta-ep-core-ext/pom.xml | 27 +++
 ruta-ep-engine/pom.xml   |  2 --
 ruta-parent/pom.xml  |  5 +
 3 files changed, 20 insertions(+), 14 deletions(-)



(uima-ruta) branch main updated (3d2d94d3 -> 462cb628)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 3d2d94d3 Merge pull request #153 from 
apache/feature/152-Better-error-messages-in-query-view
 add 21729f5e Issue #151: Unable to use Ruta Query view in Ruta 3.4.0-RC-1
 add e372c191 Merge branch 'main' into 
bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1
 new 462cb628 Merge pull request #154 from 
apache/bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ruta-ep-core-ext/pom.xml | 27 +++
 ruta-ep-engine/pom.xml   |  2 --
 ruta-parent/pom.xml  |  5 +
 3 files changed, 20 insertions(+), 14 deletions(-)



(uima-ruta) branch bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1 deleted (was e372c191)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch 
bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


 was e372c191 Merge branch 'main' into 
bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(uima-ruta) branch bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1 updated (21729f5e -> e372c191)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch 
bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 21729f5e Issue #151: Unable to use Ruta Query view in Ruta 3.4.0-RC-1
 add ae7e8068 Issue #152: Better error messages in query view
 add 3d2d94d3 Merge pull request #153 from 
apache/feature/152-Better-error-messages-in-query-view
 add e372c191 Merge branch 'main' into 
bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1

No new revisions were added by this update.

Summary of changes:
 .../uima/ruta/query/ui/QueryActionHandler.java |  63 +++---
 .../apache/uima/ruta/query/ui/QueryComposite.java  | 139 ++---
 2 files changed, 112 insertions(+), 90 deletions(-)



(uima-ruta) branch feature/152-Better-error-messages-in-query-view deleted (was ae7e8068)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch feature/152-Better-error-messages-in-query-view
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


 was ae7e8068 Issue #152: Better error messages in query view

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(uima-ruta) branch main updated (622c208b -> 3d2d94d3)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 622c208b Merge pull request #149 from 
apache/refactoring/133-Update-dependencies
 add ae7e8068 Issue #152: Better error messages in query view
 new 3d2d94d3 Merge pull request #153 from 
apache/feature/152-Better-error-messages-in-query-view

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../uima/ruta/query/ui/QueryActionHandler.java |  63 +++---
 .../apache/uima/ruta/query/ui/QueryComposite.java  | 139 ++---
 2 files changed, 112 insertions(+), 90 deletions(-)



(uima-ruta) 01/01: Merge pull request #153 from apache/feature/152-Better-error-messages-in-query-view

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 3d2d94d383c18c95d2f2513706c8b6d85faf5677
Merge: 622c208b ae7e8068
Author: Richard Eckart de Castilho 
AuthorDate: Wed Jan 10 13:50:34 2024 +0100

Merge pull request #153 from 
apache/feature/152-Better-error-messages-in-query-view

Issue #152: Better error messages in query view

 .../uima/ruta/query/ui/QueryActionHandler.java |  63 +++---
 .../apache/uima/ruta/query/ui/QueryComposite.java  | 139 ++---
 2 files changed, 112 insertions(+), 90 deletions(-)



(uima-ruta) 01/01: Issue #155: UIMA Core plugins not found when installing Ruta

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch 
bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit dcbe067907ed89c5f8fcfcbed35b76c44b6361f1
Author: Richard Eckart de Castilho 
AuthorDate: Wed Jan 10 12:59:40 2024 +0100

Issue #155: UIMA Core plugins not found when installing Ruta

- Update update site URLs
---
 ruta-eclipse-feature/feature.xml  | 2 +-
 ruta-eclipse-update-site/category.xml | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/ruta-eclipse-feature/feature.xml b/ruta-eclipse-feature/feature.xml
index 5a8caf36..be8e5547 100644
--- a/ruta-eclipse-feature/feature.xml
+++ b/ruta-eclipse-feature/feature.xml
@@ -145,7 +145,7 @@ Apache UIMA is a trademark of the Apache Software 
Foundation in the United State

 

-  http://www.apache.org/dist/uima/eclipse-update-site/"/>
+  https://downloads.apache.org/uima/eclipse-update-site-v3/"/>

 

diff --git a/ruta-eclipse-update-site/category.xml 
b/ruta-eclipse-update-site/category.xml
index 7f096248..7df51333 100644
--- a/ruta-eclipse-update-site/category.xml
+++ b/ruta-eclipse-update-site/category.xml
@@ -29,4 +29,5 @@
   

https://download.eclipse.org/releases/2018-12/; enabled="true" />
+   https://downloads.apache.org/uima/eclipse-update-site-v3/; 
enabled="true" />
 



(uima-ruta) branch bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta created (now dcbe0679)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch 
bugfix/155-UIMA-Core-plugins-not-found-when-installing-Ruta
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


  at dcbe0679 Issue #155: UIMA Core plugins not found when installing Ruta

This branch includes the following new commits:

 new dcbe0679 Issue #155: UIMA Core plugins not found when installing Ruta

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




(uima-ruta) 01/01: Issue #151: Unable to use Ruta Query view in Ruta 3.4.0-RC-1

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch 
bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 21729f5e7832331afee788b961bd938354d27544
Author: Richard Eckart de Castilho 
AuthorDate: Wed Jan 10 12:55:30 2024 +0100

Issue #151: Unable to use Ruta Query view in Ruta 3.4.0-RC-1

- Make sure that ruta-ext Eclipse plugin does not export the  
org.apache.uima.ruta package
- Bit of cleaning up
---
 ruta-ep-core-ext/pom.xml | 27 +++
 ruta-ep-engine/pom.xml   |  2 --
 ruta-parent/pom.xml  |  5 +
 3 files changed, 20 insertions(+), 14 deletions(-)

diff --git a/ruta-ep-core-ext/pom.xml b/ruta-ep-core-ext/pom.xml
index 52f639a4..0e812e13 100644
--- a/ruta-ep-core-ext/pom.xml
+++ b/ruta-ep-core-ext/pom.xml
@@ -19,17 +19,22 @@
 -->
 http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd;>
   4.0.0
-  ruta-ep-core-ext
-  Apache UIMA Ruta Eclipse: ${project.artifactId}
+
   
 org.apache.uima
 ruta-ep-parent
 3.4.0-SNAPSHOT
 ../ruta-ep-parent/pom.xml
   
+  
+  ruta-ep-core-ext
+  Apache UIMA Ruta Eclipse: ${project.artifactId}
+  Eclipse plugin for providing the implementions of the 
additional language extensions in the UIMA Ruta Workbench
+
   
 
   
+
   ${uimaWebsiteUrl}
 
   
@@ -44,19 +49,16 @@
   org.apache.uima
   ruta-core
   ${project.parent.version}
-  compile
 
 
   org.apache.uima
   ruta-core-ext
   ${project.parent.version}
-  compile
 
 
   org.apache.uima
   ruta-ep-ide
   ${project.parent.version}
-  compile
 
 
   org.apache.uima
@@ -96,31 +98,32 @@
 
   
 <_nouses>true
-<_exportcontents>
-  org.apache.uima.ruta
-
 
   org.apache.uima.runtime,
   org.apache.uima.ruta.engine,
   org.apache.uima.ruta.ide,
   org.apache.uima.ruta.ide.ui,
-  org.eclipse.dltk.core;bundle-version="3.0.0"
+  org.eclipse.dltk.core;bundle-version="5.11.0"
 
 
 
+
+  !*
+
 
org.apache.uima.ruta.core.ext;singleton:=true
 
${execution.environment}
 lazy
 true
 registered
-
org.apache.uima.runtime,org.apache.uima.ruta.engine
+
+  org.apache.uima.runtime,
+  org.apache.uima.ruta.engine
+
   
 
   
 
   
-
 
   
-  Eclipse plugin for providing the implementions of the 
additional language extensions in the UIMA Ruta Workbench
 
\ No newline at end of file
diff --git a/ruta-ep-engine/pom.xml b/ruta-ep-engine/pom.xml
index 3f8b84b9..1027364b 100644
--- a/ruta-ep-engine/pom.xml
+++ b/ruta-ep-engine/pom.xml
@@ -169,12 +169,10 @@
 
   org.slf4j
   slf4j-simple
-  1.7.30
 
 
   org.slf4j
   slf4j-api
-  1.7.30
 
 
   
diff --git a/ruta-parent/pom.xml b/ruta-parent/pom.xml
index 2fb77353..feca906d 100644
--- a/ruta-parent/pom.xml
+++ b/ruta-parent/pom.xml
@@ -192,6 +192,11 @@
 slf4j-api
 ${slf4j-version}
   
+  
+org.slf4j
+slf4j-simple
+${slf4j-version}
+  
   
 org.slf4j
 slf4j-jdk14



(uima-ruta) branch feature/152-Better-error-messages-in-query-view updated (b2cff379 -> ae7e8068)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch feature/152-Better-error-messages-in-query-view
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


omit b2cff379 #152 - Better error messages in query view
 add ae7e8068 Issue #152: Better error messages in query view

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b2cff379)
\
 N -- N -- N   
refs/heads/feature/152-Better-error-messages-in-query-view (ae7e8068)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:



(uima-ruta) branch bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1 created (now 21729f5e)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch 
bugfix/151-Unable-to-use-Ruta-Query-view-in-Ruta-3.4.0-RC-1
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


  at 21729f5e Issue #151: Unable to use Ruta Query view in Ruta 3.4.0-RC-1

This branch includes the following new commits:

 new 21729f5e Issue #151: Unable to use Ruta Query view in Ruta 3.4.0-RC-1

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




(uima-ruta) branch feature/152-Better-error-messages-in-query-view created (now b2cff379)

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch feature/152-Better-error-messages-in-query-view
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


  at b2cff379 #152 - Better error messages in query view

This branch includes the following new commits:

 new b2cff379 #152 - Better error messages in query view

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




(uima-ruta) 01/01: #152 - Better error messages in query view

2024-01-10 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch feature/152-Better-error-messages-in-query-view
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit b2cff37935c1434495de15a3d5e08918c505b701
Author: Richard Eckart de Castilho 
AuthorDate: Wed Jan 10 12:53:00 2024 +0100

#152 - Better error messages in query view

- Check for proper data location and type system location and generate 
error otherwise
---
 .../uima/ruta/query/ui/QueryActionHandler.java |  63 +++---
 .../apache/uima/ruta/query/ui/QueryComposite.java  | 139 ++---
 2 files changed, 112 insertions(+), 90 deletions(-)

diff --git 
a/ruta-ep-addons/src/main/java/org/apache/uima/ruta/query/ui/QueryActionHandler.java
 
b/ruta-ep-addons/src/main/java/org/apache/uima/ruta/query/ui/QueryActionHandler.java
index bf8268bb..b0683665 100755
--- 
a/ruta-ep-addons/src/main/java/org/apache/uima/ruta/query/ui/QueryActionHandler.java
+++ 
b/ruta-ep-addons/src/main/java/org/apache/uima/ruta/query/ui/QueryActionHandler.java
@@ -84,7 +84,6 @@ public class QueryActionHandler implements IHandler {
 private QueryComposite composite;
 
 QueryJobChangeAdapter(QueryComposite composite) {
-  super();
   this.composite = composite;
 }
 
@@ -92,6 +91,7 @@ public class QueryActionHandler implements IHandler {
 public void done(IJobChangeEvent event) {
   if (event.getResult().isOK()) {
 composite.getDisplay().asyncExec(new Runnable() {
+  @Override
   public void run() {
 composite.update();
   }
@@ -142,6 +142,7 @@ public class QueryActionHandler implements IHandler {
   queryView.showBusy(true);
   monitor.beginTask("Initializing analysis engine...", 1);
   queryComposite.getDisplay().asyncExec(new Runnable() {
+@Override
 public void run() {
   queryComposite.setResult(null);
 }
@@ -150,8 +151,22 @@ public class QueryActionHandler implements IHandler {
   int files = 0;
   int found = 0;
 
-  if (monitor.isCanceled())
+  if (monitor.isCanceled()) {
 return Status.CANCEL_STATUS;
+  }
+
+  if (StringUtils.isBlank(dataLocation)) {
+return Status.error("No data location specified.");
+  }
+
+  if (StringUtils.isBlank(typeSystemLocation)) {
+return Status.error("No type system specified.");
+  }
+
+  File dir = new File(dataLocation);
+  if (!dir.exists() || !dir.isDirectory() || !dir.canRead()) {
+return Status.error("Data location does not exist, is not a directory 
or cannot be read.");
+  }
 
   final List result = new ArrayList();
   String script = "PACKAGE query;\n\n";
@@ -160,8 +175,8 @@ public class QueryActionHandler implements IHandler {
   try {
 URL aedesc = RutaEngine.class.getResource("BasicEngine.xml");
 XMLInputSource inae = new XMLInputSource(aedesc);
-IFile iFile = QueryComposite.getIFile(typeSystemLocation);
-IProject project = iFile.getProject();
+IFile typeSystemFile = QueryComposite.getIFile(typeSystemLocation);
+IProject project = typeSystemFile.getProject();
 ClassLoader classLoader = RutaProjectUtils.getClassLoader(project);
 ResourceManager resMgr = new ResourceManager_impl(classLoader);
 ResourceSpecifier specifier = 
UIMAFramework.getXMLParser().parseResourceSpecifier(inae);
@@ -174,10 +189,11 @@ public class QueryActionHandler implements IHandler {
   Collection tsds = new 
ArrayList();
   tsds.add(basicTypeSystem);
   if (typeSystemLocation.endsWith(RutaEngine.SCRIPT_FILE_EXTENSION)) {
-IPath scriptPath = iFile.getLocation();
+IPath scriptPath = typeSystemFile.getLocation();
 IPath descriptorRootPath = 
RutaProjectUtils.getDescriptorRootPath(project);
 resMgr.setDataPath(descriptorRootPath.toPortableString());
-IPath path = 
RutaProjectUtils.getTypeSystemDescriptorPath(scriptPath, project, classLoader);
+IPath path = 
RutaProjectUtils.getTypeSystemDescriptorPath(scriptPath, project,
+classLoader);
 tsLocation = path.toPortableString();
   }
   File tsFile = new File(tsLocation);
@@ -261,7 +277,6 @@ public class QueryActionHandler implements IHandler {
   return Status.CANCEL_STATUS;
 }
 
-File dir = new File(dataLocation);
 List inputFiles = getFiles(dir, recursive);
 monitor.beginTask("Query in " + dir.getName() + "...", 
inputFiles.size());
 
@@ -280,21 +295,21 @@ public class QueryActionHandler implements IHandler {
   }
 
   cas.reset();
-  if 
(FilenameUtils.getExtension(each.getName()).equalsIgnoreCase("xmi") ||
-  
FilenameUtils.getExtension(

svn commit: r66119 - in /dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0: ./ eclipse-update-site/ eclipse-update-site/META-INF/ eclipse-update-site/features/ eclipse-update-site/plugins/

2023-12-18 Thread rec
Author: rec
Date: Mon Dec 18 09:56:54 2023
New Revision: 66119

Log:
Staging release artifacts for ruta-3.4.0-RC-202312180956-bb7f4a0

Added:
dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/
dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/
dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/META-INF/

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/META-INF/DEPENDENCIES

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/META-INF/LICENSE

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/META-INF/NOTICE

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/artifacts.jar   
(with props)

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/artifacts.jar.asc

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/artifacts.jar.sha512

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/artifacts.xml.xz
   (with props)

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/artifacts.xml.xz.asc

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/artifacts.xml.xz.sha512
dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/content.jar 
  (with props)

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/content.jar.asc

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/content.jar.sha512

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/content.xml.xz  
 (with props)

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/content.xml.xz.asc

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/content.xml.xz.sha512
dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/features/

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/features/org.apache.uima.ruta.feature_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/features/org.apache.uima.ruta.feature_3.4.0.jar.asc

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/features/org.apache.uima.ruta.feature_3.4.0.jar.sha512
dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/p2.index
dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/p2.index.asc

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/p2.index.sha512
dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.addons_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.addons_3.4.0.jar.asc

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.addons_3.4.0.jar.sha512

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.caseditor_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.caseditor_3.4.0.jar.asc

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.caseditor_3.4.0.jar.sha512

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.core.ext_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.core.ext_3.4.0.jar.asc

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.core.ext_3.4.0.jar.sha512

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.engine_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.engine_3.4.0.jar.asc

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.engine_3.4.0.jar.sha512

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.ide.ui_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.ide.ui_3.4.0.jar.asc

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.ide.ui_3.4.0.jar.sha512

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.ide_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.ide_3.4.0.jar.asc

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.ide_3.4.0.jar.sha512

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.textruler_3.4.0.jar
   (with props)

dev/uima/ruta-3.4.0-RC-202312180956-bb7f4a0/eclipse-update-site/plugins/org.apache.uima.ruta.textruler_3.4.0.jar.asc

dev/uima/ruta

(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 updated (d56511dd -> 069eb938)

2023-12-18 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from d56511dd Issue #146: Apache UIMA Ruta 3.4.0
 add bb7f4a04 [maven-release-plugin] prepare release ruta-3.4.0
 add 069eb938 [maven-release-plugin] prepare for next development iteration

No new revisions were added by this update.

Summary of changes:
 example-projects/ruta-ep-example-extensions/pom.xml |  2 +-
 example-projects/ruta-maven-example/pom.xml |  4 ++--
 pom.xml |  8 
 ruta-core-ext/pom.xml   |  4 ++--
 ruta-core/pom.xml   |  4 ++--
 ruta-documentation/pom.xml  |  2 +-
 ruta-eclipse-feature/feature.xml|  2 +-
 ruta-eclipse-feature/pom.xml| 20 +---
 ruta-eclipse-update-site/category.xml   |  2 +-
 ruta-eclipse-update-site/pom.xml|  6 +++---
 ruta-ep-addons/pom.xml  |  4 ++--
 ruta-ep-caseditor/pom.xml   |  4 ++--
 ruta-ep-core-ext/pom.xml|  4 ++--
 ruta-ep-engine/pom.xml  |  4 ++--
 ruta-ep-ide-ui/pom.xml  |  4 ++--
 ruta-ep-ide/pom.xml |  4 ++--
 ruta-ep-parent/pom.xml  |  4 ++--
 ruta-ep-textruler/pom.xml   |  4 ++--
 ruta-maven-archetype/pom.xml|  4 ++--
 ruta-maven-plugin/pom.xml   |  4 ++--
 ruta-parent/pom.xml |  4 ++--
 21 files changed, 48 insertions(+), 50 deletions(-)



(uima-ruta) annotated tag ruta-3.4.0 updated (bb7f4a04 -> d7d635bc)

2023-12-18 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to annotated tag ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


*** WARNING: tag ruta-3.4.0 was modified! ***

from bb7f4a04 (commit)
  to d7d635bc (tag)
 tagging bb7f4a0404c0cae5ee02e86f3ed8bf651779bcc1 (commit)
 replaces rel/ruta-3.3.0
  by noname
  on Mon Dec 18 10:53:45 2023 +0100

- Log -
[maven-release-plugin] copy for tag ruta-3.4.0
---


No new revisions were added by this update.

Summary of changes:



(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 updated (aeaa1ad9 -> d56511dd)

2023-12-18 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from aeaa1ad9 Issue #146: Apache UIMA Ruta 3.4.0
 add d56511dd Issue #146: Apache UIMA Ruta 3.4.0

No new revisions were added by this update.

Summary of changes:
 ruta-eclipse-update-site/category.xml | 1 +
 1 file changed, 1 insertion(+)



(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 updated (30b244b0 -> aeaa1ad9)

2023-12-18 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 30b244b0 Merge branch 'main' into release/146-Apache-UIMA-Ruta-3.4.0
 add aeaa1ad9 Issue #146: Apache UIMA Ruta 3.4.0

No new revisions were added by this update.

Summary of changes:
 ruta-eclipse-feature/feature.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(uima-ruta) 01/01: Merge branch 'main' into release/146-Apache-UIMA-Ruta-3.4.0

2023-12-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 30b244b016d15986b1543b2400735050ba2b3c91
Merge: af04fa54 622c208b
Author: Richard Eckart de Castilho 
AuthorDate: Fri Dec 15 15:57:46 2023 +0100

Merge branch 'main' into release/146-Apache-UIMA-Ruta-3.4.0

* main:
  Issue #133: Update dependencies
  Issue #147: Switch to GH-based changes generation

 ...hanges-report => marker-file-enabling-release-notes |  0
 pom.xml|  3 ---
 ruta-parent/pom.xml| 18 --
 3 files changed, 12 insertions(+), 9 deletions(-)



(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 updated (af04fa54 -> 30b244b0)

2023-12-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from af04fa54 Issue #146: Apache UIMA Ruta 3.4.0
 add 93f98547 Issue #133: Update dependencies
 add ec266826 Issue #147: Switch to GH-based changes generation
 add df8b5ab9 Merge pull request #148 from 
apache/refactoring/147-Switch-to-GH-based-changes-generation
 add 45dc87dc Merge branch 'main' into refactoring/133-Update-dependencies
 add 622c208b Merge pull request #149 from 
apache/refactoring/133-Update-dependencies
 new 30b244b0 Merge branch 'main' into release/146-Apache-UIMA-Ruta-3.4.0

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ...hanges-report => marker-file-enabling-release-notes |  0
 pom.xml|  3 ---
 ruta-parent/pom.xml| 18 --
 3 files changed, 12 insertions(+), 9 deletions(-)
 rename marker-file-enabling-changes-report => 
marker-file-enabling-release-notes (100%)



(uima-ruta) branch main updated (df8b5ab9 -> 622c208b)

2023-12-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from df8b5ab9 Merge pull request #148 from 
apache/refactoring/147-Switch-to-GH-based-changes-generation
 add 93f98547 Issue #133: Update dependencies
 add 45dc87dc Merge branch 'main' into refactoring/133-Update-dependencies
 new 622c208b Merge pull request #149 from 
apache/refactoring/133-Update-dependencies

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 ruta-parent/pom.xml | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)



(uima-ruta) branch refactoring/133-Update-dependencies deleted (was 45dc87dc)

2023-12-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch refactoring/133-Update-dependencies
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


 was 45dc87dc Merge branch 'main' into refactoring/133-Update-dependencies

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(uima-ruta) 01/01: Merge pull request #149 from apache/refactoring/133-Update-dependencies

2023-12-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 622c208b11a0f7de3e2ec20c1de9d90bc72234e9
Merge: df8b5ab9 45dc87dc
Author: Richard Eckart de Castilho 
AuthorDate: Fri Dec 15 15:57:03 2023 +0100

Merge pull request #149 from apache/refactoring/133-Update-dependencies

Issue #133: Update dependencies

 ruta-parent/pom.xml | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)



(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 updated: Issue #146: Apache UIMA Ruta 3.4.0

2023-12-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


The following commit(s) were added to 
refs/heads/release/146-Apache-UIMA-Ruta-3.4.0 by this push:
 new af04fa54 Issue #146: Apache UIMA Ruta 3.4.0
af04fa54 is described below

commit af04fa54d54c8cb805b1e18c48d2ab7b0c55717e
Author: Richard Eckart de Castilho 
AuthorDate: Fri Dec 15 15:56:42 2023 +0100

Issue #146: Apache UIMA Ruta 3.4.0

- Update the LICENSE and NOTICE files for the binary release / Eclipse 
plugins
---
 ruta-ep-engine/src/main/readme_bin/LICENSE | 29 +++--
 ruta-ep-engine/src/main/readme_bin/NOTICE  |  2 +-
 2 files changed, 28 insertions(+), 3 deletions(-)

diff --git a/ruta-ep-engine/src/main/readme_bin/LICENSE 
b/ruta-ep-engine/src/main/readme_bin/LICENSE
index 02f9492e..3acf1847 100644
--- a/ruta-ep-engine/src/main/readme_bin/LICENSE
+++ b/ruta-ep-engine/src/main/readme_bin/LICENSE
@@ -239,6 +239,31 @@ licensed under the BSD License.
 
 

   
 
+Checker Framework qualifiers
+Copyright 2004-present by the Checker Framework developers
+
+MIT License:
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+
+
   
+
 This product contains htmlparser libraries 
(http://htmlparser.sourceforge.net/), 
 licensed under the Common Public License.
 
@@ -458,9 +483,9 @@ licensed under the Common Public License.
 
 ===
 
-SPRING FRAMEWORK 5.3.25 SUBCOMPONENTS:
+SPRING FRAMEWORK 5.3.30 SUBCOMPONENTS:
 
-Spring Framework 5.3.25 includes a number of subcomponents
+Spring Framework 5.3.30 includes a number of subcomponents
 with separate copyright notices and license terms. The product that
 includes this file does not necessarily use all the open source
 subcomponents referred to below. Your use of the source
diff --git a/ruta-ep-engine/src/main/readme_bin/NOTICE 
b/ruta-ep-engine/src/main/readme_bin/NOTICE
index c6d7a369..6ce17b4c 100644
--- a/ruta-ep-engine/src/main/readme_bin/NOTICE
+++ b/ruta-ep-engine/src/main/readme_bin/NOTICE
@@ -60,7 +60,7 @@ Copyright 2014-2020 The Apache Software Foundation
 
 

 
-Spring Framework 5.3.25
+Spring Framework 5.3.30
 Copyright (c) 2002-2023 Pivotal, Inc.
 
 This product is licensed to you under the Apache License, Version 2.0



(uima-ruta) 01/02: Issue #146: Apache UIMA Ruta 3.4.0

2023-12-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 67c4ce5d95f1dc067282bb2ac27b9e6ca80f5ac4
Author: Richard Eckart de Castilho 
AuthorDate: Fri Dec 15 13:48:12 2023 +0100

Issue #146: Apache UIMA Ruta 3.4.0

- Update README.md
---
 README.md | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index 378dbc2c..92590a86 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 [![Maven 
Central](https://img.shields.io/maven-central/v/org.apache.uima/ruta-core?style=for-the-badge)](https://search.maven.org/search?q=g:org.apache.uima%20a:ruta*)
 
-[![Build 
Status](https://ci-builds.apache.org/buildStatus/icon?job=UIMA%2Fuima-ruta%2Fmain=main%20build)](https://ci-builds.apache.org/job/UIMA/job/uima-ruta/job/main/)
 [![Build 
Status](https://ci-builds.apache.org/buildStatus/icon?job=UIMA%2Fuima-ruta%2Fmain-v2=main-v2%20build)](https://ci-builds.apache.org/job/UIMA/job/uima-ruta/job/main-v2/)
+[![Build 
Status](https://ci-builds.apache.org/buildStatus/icon?job=UIMA%2Fuima-ruta%2Fmain=main%20build)](https://ci-builds.apache.org/job/UIMA/job/uima-ruta/job/main/)
 [![Build 
Status](https://ci-builds.apache.org/buildStatus/icon?job=UIMA%2Fuima-ruta%2Fmain=main%20build)](https://ci-builds.apache.org/job/UIMA/job/uima-ruta/job/main/)
 
 What is Apache UIMA Ruta?
 -
@@ -75,7 +75,7 @@ The UIMA Ruta Workbench can be installed via Eclipse update 
site [https://downlo
 Building from the Source Distribution
 -
 
-We use Maven 3.6.3 and Java 11 or later for building; download this if needed, 
+We use Maven 3.8.1 and Java 17 or later for building; download this if needed, 
 and set the environment variable `MAVEN_OPTS` to `-Xmx800m`.
 
 Then do the build by going into the UIMA Ruta directory, and issuing the 
command
@@ -101,7 +101,7 @@ help, source code and feedback. If you are interested in 
contributing, please vi
 How to Report Issues
 
 
-The Apache UIMA project uses JIRA for issue tracking. Please report any issues 
you find at 
+The Apache UIMA project uses GitHub for issue tracking. Please report any 
issues you find at 
 [our issue tracker](https://github.com/apache/uima-ruta/issues).
 
 
@@ -109,10 +109,10 @@ Useful tips
 ---
 
 This product was originally released as Apache UIMA TextMarker. The UIMA Ruta 
Workbench provides
-a command for updating old projects. Please right-click on a project and 
select "UIMA Ruta -> Update Project". 
+a command for updating old projects. Please right-click on a project and 
select **UIMA Ruta -> Update Project**. 
 
 The UIMA Ruta analysis engine requires type priorities for the correct 
execution of rules. 
-If a CAS is created using the CasCreationUtils, please provide the type 
priorities, e.g., by:
+If a CAS is created using the `CasCreationUtils`, please provide the type 
priorities, e.g., by:
 
 URL tpUrl = 
this.getClass().getResource("/org/apache/uima/ruta/engine/TypePriorities.xml");
 TypePriorities typePriorities = 
UIMAFramework.getXMLParser().parseTypePriorities(
@@ -120,7 +120,7 @@ If a CAS is created using the CasCreationUtils, please 
provide the type prioriti
 CAS cas = CasCreationUtils.createCas(descriptor, typePriorities, new 
FsIndexDescription[0]);
 
 Using the `jcasgen-maven-plugin` may cause problems if it creates duplicate 
classes for the 
-internal UIMA Ruta types (overwriting the implementation of RutaBasic). 
Depending on the location 
+internal UIMA Ruta types (overwriting the implementation of _RutaBasic_). 
Depending on the location 
 of the type system descriptors, the plugin should be configured to be limited 
on the project, 
 or the UIMA Ruta type system descriptors should explicitly be excluded:
 



(uima-ruta) branch release/146-Apache-UIMA-Ruta-3.4.0 updated (6de899d2 -> 56f2cf63)

2023-12-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 6de899d2 Merge pull request #143 from 
apache/refactoring/133-Update-dependencies
 new 67c4ce5d Issue #146: Apache UIMA Ruta 3.4.0
 new 56f2cf63 Issue #146: Apache UIMA Ruta 3.4.0

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.md| 12 ++--
 RELEASE_NOTES.md | 29 +
 2 files changed, 19 insertions(+), 22 deletions(-)



(uima-ruta) 02/02: Issue #146: Apache UIMA Ruta 3.4.0

2023-12-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch release/146-Apache-UIMA-Ruta-3.4.0
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 56f2cf63bbd11f9affd53b075c12da86c5b002a2
Author: Richard Eckart de Castilho 
AuthorDate: Fri Dec 15 15:38:22 2023 +0100

Issue #146: Apache UIMA Ruta 3.4.0

- Update RELEASE_NOTES.md
---
 RELEASE_NOTES.md | 29 +
 1 file changed, 13 insertions(+), 16 deletions(-)

diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index c7c62da8..14884d9f 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -19,9 +19,9 @@
 ***
 -->

-# Apache UIMA Ruta (TM) v3.3.0
+# Apache UIMA Ruta (TM) v3.4.0
 
-Apache UIMA Ruta is a rule-based script language supported by 
Eclipse-based tooling.
+Apache UIMA Ruta™ is a rule-based script language supported by Eclipse-based 
tooling.
 The language is designed to enable rapid development of text processing 
applications within Apache UIMA. 
 A special focus lies on the intuitive and flexible domain specific language 
for defining 
 patterns of annotations. The Eclipse-based tooling for Ruta, called the Ruta 
Workbench,
@@ -31,16 +31,13 @@ Ruta rule language and the Ruta Workbench integrate 
smoothly with Apache UIMA.
 This is a feature and bugfix release.
 
 ## What's Changed
-* ⭐️ Issue #100: Enable type system discovery via SPI in OSGI
-* ⭐️ Issue #102: RutaResourceLoader should consider TCCL
-* ⭐️ Issue #107: Enable loading uimaFIT annotators and other classes through 
the TCCL
-* ⭐️ Issue #111: Support copy/paste clipboard for feature values in annotation 
browser view
-* 烈 Issue #110: Usage of labels within macro action definition is broken
-* ⚙️ Issue #118: Merge type system modules into core module
-* ⚙️ Issue #122: Resolve split package between ruta-core and ruta-core-ext
-* 啕 Issue #104: Upgrade dependencies
+* ⭐️ Issue #130: Improve support for feature assignments
+* 烈 Issue #139: Unexpected behavior of plus operator
+*  No issue: Fix description of ADDRETAINTYPE
+* ⚙️ Issue #133: Update dependencies
+*  Issue #136: Convert documentation to Asciidoc
 
-**Full Changelog**: 
https://github.com/apache/uima-ruta/compare/rel/ruta-3.2.0...ruta-3.3.0
+**Full Changelog**: 
https://github.com/apache/uima-ruta/compare/rel/ruta-3.3.0...ruta-3.4.0
 
 Please use the [mailing lists](https://uima.apache.org/mail-lists.html) for 
feedback and the [issue tracker](https://github.com/apache/uima-ruta/issues) to 
report bugs.
 
@@ -54,9 +51,9 @@ Please use the [mailing 
lists](https://uima.apache.org/mail-lists.html) for feed
 
 ## Supported Platforms
 
-UIMA Ruta 3.3.0 should be used in combination with
+UIMA Ruta 3.4.0 should be used in combination with
 
-- Java 1.8 or higher
-- UIMA Java SDK 3.4.0 or higher
-- uimaFIT 3.4.0 or higher
-- Spring Framework 5.3.25 or higher
+- Java 17 or higher
+- UIMA Java SDK 3.5.0 or higher
+- uimaFIT 3.5.0 or higher
+- Spring Framework 5.3.30 or higher



(uima-ruta) branch refactoring/133-Update-dependencies updated (93f98547 -> 45dc87dc)

2023-12-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a change to branch refactoring/133-Update-dependencies
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git


from 93f98547 Issue #133: Update dependencies
 add ec266826 Issue #147: Switch to GH-based changes generation
 add df8b5ab9 Merge pull request #148 from 
apache/refactoring/147-Switch-to-GH-based-changes-generation
 add 45dc87dc Merge branch 'main' into refactoring/133-Update-dependencies

No new revisions were added by this update.

Summary of changes:
 ...le-enabling-changes-report => marker-file-enabling-release-notes | 0
 pom.xml | 3 ---
 ruta-parent/pom.xml | 6 ++
 3 files changed, 6 insertions(+), 3 deletions(-)
 rename marker-file-enabling-changes-report => 
marker-file-enabling-release-notes (100%)



(uima-ruta) 01/01: Merge pull request #148 from apache/refactoring/147-Switch-to-GH-based-changes-generation

2023-12-15 Thread rec
This is an automated email from the ASF dual-hosted git repository.

rec pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit df8b5ab9463a4c9a467b22be1e9c464443ee0079
Merge: 6de899d2 ec266826
Author: Richard Eckart de Castilho 
AuthorDate: Fri Dec 15 15:16:27 2023 +0100

Merge pull request #148 from 
apache/refactoring/147-Switch-to-GH-based-changes-generation

Issue #147: Switch to GH-based changes generation

 ...le-enabling-changes-report => marker-file-enabling-release-notes | 0
 pom.xml | 3 ---
 ruta-parent/pom.xml | 6 ++
 3 files changed, 6 insertions(+), 3 deletions(-)



  1   2   3   4   5   6   7   8   9   10   >