svn commit: r1724885 - /uima/uima-as/trunk/src/main/scripts/startBroker.sh

2016-01-15 Thread cwiklik
Author: cwiklik
Date: Fri Jan 15 22:03:37 2016
New Revision: 1724885

URL: http://svn.apache.org/viewvc?rev=1724885&view=rev
Log:
UIMA-4750 fixed startBroker.sh

Modified:
uima/uima-as/trunk/src/main/scripts/startBroker.sh

Modified: uima/uima-as/trunk/src/main/scripts/startBroker.sh
URL: 
http://svn.apache.org/viewvc/uima/uima-as/trunk/src/main/scripts/startBroker.sh?rev=1724885&r1=1724884&r2=1724885&view=diff
==
--- uima/uima-as/trunk/src/main/scripts/startBroker.sh (original)
+++ uima/uima-as/trunk/src/main/scripts/startBroker.sh Fri Jan 15 22:03:37 2016
@@ -48,4 +48,4 @@ if [ ! -x "$ACTIVEMQ_HOME/bin/activemq"
 chmod +x "$ACTIVEMQ_HOME/bin/activemq"
 fi
 
-"$ACTIVEMQ_HOME/bin/activemq" "start 
xbean:file:$ACTIVEMQ_BASE/conf/activemq-nojournal.xml"
+"$ACTIVEMQ_HOME/bin/activemq" "start" 
"xbean:file:$ACTIVEMQ_BASE/conf/activemq-nojournal.xml"




svn commit: r1724848 - in /uima/sandbox/uima-ducc/trunk/uima-ducc-rm/src/main/java/org/apache/uima/ducc/rm/scheduler: Machine.java NodepoolScheduler.java

2016-01-15 Thread challngr
Author: challngr
Date: Fri Jan 15 16:34:33 2016
New Revision: 1724848

URL: http://svn.apache.org/viewvc?rev=1724848&view=rev
Log:
UIMA-4577 Must update db when reassigning share under defrag.

Modified:

uima/sandbox/uima-ducc/trunk/uima-ducc-rm/src/main/java/org/apache/uima/ducc/rm/scheduler/Machine.java

uima/sandbox/uima-ducc/trunk/uima-ducc-rm/src/main/java/org/apache/uima/ducc/rm/scheduler/NodepoolScheduler.java

Modified: 
uima/sandbox/uima-ducc/trunk/uima-ducc-rm/src/main/java/org/apache/uima/ducc/rm/scheduler/Machine.java
URL: 
http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-rm/src/main/java/org/apache/uima/ducc/rm/scheduler/Machine.java?rev=1724848&r1=1724847&r2=1724848&view=diff
==
--- 
uima/sandbox/uima-ducc/trunk/uima-ducc-rm/src/main/java/org/apache/uima/ducc/rm/scheduler/Machine.java
 (original)
+++ 
uima/sandbox/uima-ducc/trunk/uima-ducc-rm/src/main/java/org/apache/uima/ducc/rm/scheduler/Machine.java
 Fri Jan 15 16:34:33 2016
@@ -335,6 +335,13 @@ public class Machine
 this.virtual_share_order = share_order - blacklisted_shares;
 }
 
+public void reassignShare(Share s, IRmJob newjob)
+{
+removeShare(s);
+s.reassignJob(newjob);
+assignShare(s);
+}
+
 public void assignShare(Share s)
 {
String methodName = "assignShare";
@@ -345,9 +352,9 @@ public class Machine
 // Not transactional.  If this turns into a problem we'll have to 
find a way
persistence.setNodeProperties(id, RmNodes.Assignments, 
activeShares.size(), RmNodes.NPAssignments, countNpShares(), 
RmNodes.SharesLeft, shares_left);
persistence.addAssignment(id, s.getJob().getId(), s, 
getQuantum(), s.getJob().getShortType()); // update jobs on machine and 
specific shares
-logger.info(methodName, null, "Time to assign share in db", 
System.currentTimeMillis() - now);
+logger.info(methodName, s.getJob().getId(), "Time to assign 
share", s.getId(), "in db", System.currentTimeMillis() - now);
} catch (Exception e) {
-logger.warn(methodName, null, "Cannot save state; shares_left", 
shares_left, e);
+logger.warn(methodName, s.getJob().getId(), "Cannot save state for 
share", s.getId(), "shares_left", shares_left, e);
}
 
 }
@@ -364,9 +371,9 @@ public class Machine
 // Not transactional.  If this turns into a problem we'll have to 
find a way
persistence.setNodeProperties(id, RmNodes.Assignments,  
activeShares.size(), RmNodes.NPAssignments, countNpShares(),  
RmNodes.SharesLeft, shares_left);
persistence.removeAssignment(id, s.getJob().getId(), 
s);  // update jobs on machine and specific shares
-logger.info(methodName, null, "Time to remove share in db", 
System.currentTimeMillis() - now);
+logger.info(methodName, s.getJob().getId(), "Time to remove 
share", s.getId(), "in db", System.currentTimeMillis() - now);
} catch (Exception e) {
-logger.warn(methodName, null, "Cannot save state; shares_left", 
shares_left);
+logger.warn(methodName, s.getJob().getId(), "Cannot save state for 
share", s.getId(), "shares_left", shares_left);
}
 }
 

Modified: 
uima/sandbox/uima-ducc/trunk/uima-ducc-rm/src/main/java/org/apache/uima/ducc/rm/scheduler/NodepoolScheduler.java
URL: 
http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-rm/src/main/java/org/apache/uima/ducc/rm/scheduler/NodepoolScheduler.java?rev=1724848&r1=1724847&r2=1724848&view=diff
==
--- 
uima/sandbox/uima-ducc/trunk/uima-ducc-rm/src/main/java/org/apache/uima/ducc/rm/scheduler/NodepoolScheduler.java
 (original)
+++ 
uima/sandbox/uima-ducc/trunk/uima-ducc-rm/src/main/java/org/apache/uima/ducc/rm/scheduler/NodepoolScheduler.java
 Fri Jan 15 16:34:33 2016
@@ -1872,7 +1872,8 @@ public class NodepoolScheduler
 if ( s.isPending() ) {
 if (s.getShareOrder() == nj.getShareOrder() ) {
// same size, reassign it directly
 logger.debug(methodName, nj.getId(), "Reassign expanded 
share", s.toString(), "from", rich_j.getId());
-s.reassignJob(nj);
+Machine m = s.getMachine();
+m.reassignShare(s, nj);
 rich_j.cancelPending(s);
 nj.assignShare(s);
 return false;




svn commit: r11909 [2/4] - in /dev/uima/ruta-2.4.0-rc1: eclipse-update-site/ eclipse-update-site/ruta/ eclipse-update-site/ruta/features/ eclipse-update-site/ruta/plugins/ source-release/

2016-01-15 Thread pkluegl
Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.asc
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.asc
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.asc
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJWmNGoAAoJEEk0Q5PAkBnzcqkP/1BvfWf/MI7FciofYSwOM8Vj
+3/MbERLeJxNCcTeHP7EHT4I1MAg9NEWGsOYM7H9nd+K6ZAlNVWWIfaoFeSn5FtvE
+w/1PourbsZiPZl9YKmWIYLIPKieThMYJVln9vmew+/8h4E6HLVgldbfeZ1ovP31I
+qX33tPtQL8kyT4zpxg4wkB8TE/ScaaqO3YGuwm60OASrUE6CUOOw2N3hmwLjSxJt
+RQsKMzmUqEqepcet1rhda8ZJw8vD3AlaL75JZeePGr0OjTazgn8i0xyuOc7r4B5Q
+x5/Bi8VNh++viLoN0h319P1XvZ86w6tE1naLMlkscHZCJKm5LikZKy/zW7eRwz9z
+nv//fVBctWdLwBSNWd06fzGmY+3jZ5IXihOPkCGxk4pzYgQj5bxS96ovGv2IvZ7x
+OJNeaEYFfry2slgSAz4vpRyxq3CCcCUmeYDQSOEFVg3P99rkfI3YEQhMDMMMlL+b
+S4niRI6UbNkoDXmzE2QVx4jdvWQOCrDodcD9hWNIhV1S0sn1YEUSAu+9wZw289bR
+tj+I6oYKmh8V10cs/Ni1PQlFn71NRgmxZCtRLN8c6QeVIEyFug24VZ9wmu5flaI2
+r1XTJJ77mA/vWvDIOdNVxevN5dg7PNeCcZVykU5kv6v3kqp3uQ86/g4hI0R0WBq1
+4O1nTX0UcYREy8PDVses
+=wAzj
+-END PGP SIGNATURE-

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.md5
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.md5
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.md5
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1 @@
+5238bba43f5b161da76378f25c48c249 *org.apache.uima.ruta.addons_2.4.0.jar

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.pack.gz
==
Binary file - no diff available.

Propchange: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.pack.gz
--
svn:mime-type = application/x-gzip

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.pack.gz.asc
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.pack.gz.asc
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.pack.gz.asc
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJWmNGoAAoJEEk0Q5PAkBnziJoP/Rd+9i5nOvk0OhdIUa/7bBCW
+0h8mwUcH+bd2Ha+0jcBS4jlhVZWPtbWWgffoPBKmg0Mfvxp1M5HxEbA1GQ/9p1aL
+UQjOffWhYuxlf39NAFfnM3r85GtqhWXsJEYOQxauFqLcnjGHmPFE6wiK0sCgifZN
+U3n+Xe+N34IiVx5eaTkuoB43wXPdbefu6/kqvIhAWHmt5+c2pTlpc971Gbbk1jHe
+P5iudSuwMBgKwcOAYinyf+nlfoXW0fKI17FkzZgKcH5EdHQ6UieC2lnVnAF4ZmiK
+emMTEBSjUWYj+DUn20jNt6rxgGDTN2W4lq7i7NHl8y7YDbM4Hj7H58MmDnK1Qx2X
+TQKGPGV5WRv7rSfoK5f10N40B5E4vadBqVu0JiXyNK0Tv6otQAgJG+UQ3WSzQEC1
+skWp2jVfrWS1YapBSo5ohtZDbrpBcgPPen8EdJyXS+pwVX2uyBb2iQ6Skpqs3Yfl
+RIIIeP7SyAtNJG3qDCTkgyNP9ZMFWWrTf2kaCY3D/uci+a1LQgeHEYBwXDp0mtDV
+SXDeNRXuaQEJCBk1ChMe78I+sayjSlwk+PIF72/A45SAR/4i23wpXTAtlhBolLR1
+fj1IN1RE0uIUtPA5K5thgTauS4UaQyw21RqW4c3GK6isYoRcQTKrpChhTZ2XUzN/
+bnnh4KsbQX5wiPAlUR0l
+=VEqa
+-END PGP SIGNATURE-

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.pack.gz.md5
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.pack.gz.md5
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.pack.gz.md5
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1 @@
+971da82535649ab9b5573df8c059c8f1 *org.apache.uima.ruta.addons_2.4.0.jar.pack.gz

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.pack.gz.sha1
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.pack.gz.sha1
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.pack.gz.sha1
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1 @@
+d8e8e7222c293d6878c9151523e9ab03e5cdda19 
*org.apache.uima.ruta.addons_2.4.0.jar.pack.gz

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.sha1
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.4.0.jar.sha1
 (added)
+++ 
dev/uima/ruta-2.4

svn commit: r11909 [4/4] - in /dev/uima/ruta-2.4.0-rc1: eclipse-update-site/ eclipse-update-site/ruta/ eclipse-update-site/ruta/features/ eclipse-update-site/ruta/plugins/ source-release/

2016-01-15 Thread pkluegl
Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.0.jar.pack.gz.asc
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.0.jar.pack.gz.asc
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.0.jar.pack.gz.asc
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJVZ1GmAAoJEEk0Q5PAkBnzL3kP/A8vhWmQyJ0Q/nHnZkfNmoXO
+qMVbfJnhWlkknR9+vJZwBwuQZ+C8QPkdSPgMI0TFdPHftUSXKP9/rlJmd4DTryeK
+fL9XccO/YobxdqXK/1SG84rvka0zS6uU+gU6xM5Yss9om8422xcdf6/cv/7+ySgT
+iDPgT192xPI/Zyxt+OJ20DKIZh8tBA+04Za4ogvxdRWUyo9kBvO57mq/yluIInve
+dR1QqdeaBDeXx+sg46Nm/S5YLPVVOWP87SgtRiiFQLoKQA0K4CBiRSjaLcdAyUh8
+O6u/1oI75tSKAh1r5WShq8xhNUAiyQ5m5MFsUVJNCDWOorHPZAgnb32Hz3RWB8jb
+p4eW+ZiGG+7p7kZqugrybEa9aYkojS0lvBaPi84V1CBHvUoF0y/VcXnIhyQf3aOi
+T3/MXTmgf7Qf2273rbjjQgEmXKadp2GfEb9+h3OMFba62dcGUgS1CCgCOzGOq3Mq
+uEQMkFYM6WHS+sls2KKEn598jKCRjosmbvX49abtv3njxbOdHuGSy3UN5j5MyQPl
+whsTmOD5Kw2LtjsLmadXV4CcLStQRjgmGlIibBa9TTM2VOUQ7eh+ZvcaCAiPglaM
+59hB4hn/Yn//SvAjXvP9N6eMRnH1Al5UQMx9coE8/N8PUckiE4CW2xq4C/1AZFtA
+JJsAWGUR+Uz5e6sqShzl
+=oJB+
+-END PGP SIGNATURE-

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.0.jar.pack.gz.md5
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.0.jar.pack.gz.md5
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.0.jar.pack.gz.md5
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1 @@
+c8efcbed5967bcf6131c25f4b92bcc7f 
*org.apache.uima.ruta.textruler_2.3.0.jar.pack.gz

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.0.jar.pack.gz.sha1
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.0.jar.pack.gz.sha1
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.0.jar.pack.gz.sha1
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1 @@
+8e29f16318371fbfd57e6200b8de8bca801113db 
*org.apache.uima.ruta.textruler_2.3.0.jar.pack.gz

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.0.jar.sha1
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.0.jar.sha1
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.0.jar.sha1
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1 @@
+609e375b39186b3aceb106a5d0ae3163cda8977f 
*org.apache.uima.ruta.textruler_2.3.0.jar

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.1.jar
==
Binary file - no diff available.

Propchange: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.1.jar
--
svn:mime-type = application/octet-stream

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.1.jar.asc
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.1.jar.asc
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.1.jar.asc
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJV0dW8AAoJEEk0Q5PAkBnzS4oP/jEOb08SV+7c2Aq9wXZAdPzP
+oCmoxE2pZTmWsu/zGleZwHjgk5KfQIKRUTSq2ugJqRmZgeMEojcpCjort3BQ3MYg
+2qq7u5kDSFriyaGT4C0GOlu7HetsP5sEjOczzW27GaxYVne8zRBOgCvCaTsQ/mkf
+Y4zviWJ8e2/OdzaOCjzl3JBwzSR+pwXklQS6fThAmiKIA4Jg+AJFaTALogH5kywn
+knbNVI/BnPjHCFrAco6RdBMC0TAMfGy3G524HY6TAJPGxc7tIwf+9uAt6oBG4G21
+04gD+j/aCq+hdTFCNUGxtq//48YyOANJojBps3CLa40D0elvfj8wbh9g9PD0fdcI
+HW4nw4O3rGANVObICD2qt/haycVCQmw13RUqlpetRVKFY+hsDKxJBL8f0TO48Dv8
+iO7rahI/kdjDKUWI9TOSPwgiidcNyFkv/ZgDYExmq7MFzpD1I000n4lcOZvDwQsF
+osdhPgA/m76rMcUqMDc+xJz7pUHh3skAlHNUlxpwjFStsTOdHJFiccQqRRqwSVVR
+3SbIH1y5RnJPHz/DkqqtGCaoRCHtfKurxTkGYF07bDqCJR2hi3HHjb9W+a63R5h6
+nP7RrwRheHCMaFKmWAFTEH8/UtDneJLgyQ1j19EIfpnkse5irwIr6qc69BGfjqoE
+htv12rPa0DLFuGJNrENF
+=wslS
+-END PGP SIGNATURE-

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.textruler_2.3.1.jar.md5
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apach

svn commit: r11909 [3/4] - in /dev/uima/ruta-2.4.0-rc1: eclipse-update-site/ eclipse-update-site/ruta/ eclipse-update-site/ruta/features/ eclipse-update-site/ruta/plugins/ source-release/

2016-01-15 Thread pkluegl
Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.engine_2.4.0.jar.pack.gz.sha1
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.engine_2.4.0.jar.pack.gz.sha1
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.engine_2.4.0.jar.pack.gz.sha1
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1 @@
+ce41e4ebf76c564ec7044d40a8dfe89e6706dcb1 
*org.apache.uima.ruta.engine_2.4.0.jar.pack.gz

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.engine_2.4.0.jar.sha1
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.engine_2.4.0.jar.sha1
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.engine_2.4.0.jar.sha1
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1 @@
+103f3de9494acbf2cf245f16ea8116e6f1989d1e *org.apache.uima.ruta.engine_2.4.0.jar

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.ide.ui_2.1.0.jar
==
Binary file - no diff available.

Propchange: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.ide.ui_2.1.0.jar
--
svn:mime-type = application/octet-stream

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.ide.ui_2.1.0.jar.asc
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.ide.ui_2.1.0.jar.asc
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.ide.ui_2.1.0.jar.asc
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2.0.17 (MingW32)
+
+iQIcBAABAgAGBQJSOFSxAAoJEEk0Q5PAkBnzciUP/09lu/vr447n53mQjv0SsFNT
+cw4nRETwSuwxwCN178mWyHRO1tYDhl1N7hu4Q+R3XQ9zt0tNDBeTBui+XR3OZK0X
+D7BD+xq3gqMyC6PNsoP0Ujmo3gqhzfGbSL9HuKMLObrVWQA395CN4gmfu7G7ETjy
+uUth2K5bVT2tv0LbcyhIe1uiKwkcFKAZlLA3h5CN7SfNrn3NlqWK5BvlpYdWLX2k
+raQdkut5iYkRnfk410l/7NFtQFCWkXQwUOJd6SmPSU4wWJEcUiiaMN6Wz/TuK+iG
+5ygo0P9/rePaV+wk5onmWzSLAPmdGA9eaOBWVvQpQKcSADkoMQkq7NFOK6SWEbHD
+pfp+aDArgPdCtVe+8cXHKvr5/EDO068Sb1a4jYWR4YpFFNqcpzt+aIe2bgkUkyNQ
+Ydc1Qyy67qxMPtTLZlfwBVNWSZnVUzZEGIOMhxQPlQ/nubarflpjcB6mV7IniFrH
+dfFd33Gsq35FxJrEu6d1jJaeJVpARqun2QwkU/XCcUPNkUHL9j0vGtSC5OSs7v4l
+9SY3uoR+5Zr8sB7UNiZRBPie5lkjZY6x7IiWaWVlYKQP7JCjlfYzYmuR3Ffkk+RK
+dsLr0WYTi4trK5UBPflEpSskS3thcdwnmTPBQ4UwceAO5myhJgX0Q6QBXKeDzvCG
+7oU74slbAuE1HFRJjxst
+=LsF8
+-END PGP SIGNATURE-

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.ide.ui_2.1.0.jar.md5
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.ide.ui_2.1.0.jar.md5
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.ide.ui_2.1.0.jar.md5
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1 @@
+1551ce8db3f17d3d37ba37cc1e61acee *org.apache.uima.ruta.ide.ui_2.1.0.jar

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.ide.ui_2.1.0.jar.pack.gz
==
Binary file - no diff available.

Propchange: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.ide.ui_2.1.0.jar.pack.gz
--
svn:mime-type = application/x-gzip

Added: 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.ide.ui_2.1.0.jar.pack.gz.asc
==
--- 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.ide.ui_2.1.0.jar.pack.gz.asc
 (added)
+++ 
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.ide.ui_2.1.0.jar.pack.gz.asc
 Fri Jan 15 11:23:16 2016
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2.0.17 (MingW32)
+
+iQIcBAABAgAGBQJSOFSxAAoJEEk0Q5PAkBnzGkwQAIbB27tiq1NK55sVH6+UYxEn
+iuoemwl5gF2/u30JkdKKvtQutlBVk/r8G8jO2OQZOl3MATqBvgn1TYrAgyI4xjlP
+OTvjcrPbgqDGcZRjw3HGDBKCs4hSE5px+qO/a4lIScafUjOXYmKGR/JVz89qnv+p
+xrHSQyMbTmQCVSl2nrAIWtHZLgvPWYxs7+7JpHajFls+08/xFYa0Hot10CSbKOAp
+WDtX8qQsJh2fHKHrqeR4tfuYWeKaOmASEyx1dx0SZB3U4OV5h1CIxMhRJi7uFmUd
+78Gfr78iVri4R6wIEJ2UQwS+LayoGC1ljnmyCbq+ZaMTUYCHUJohr4kNBDHdeF19
+pG+XPCwkQgs0uvHx5oBR77Nku5gua6u8PCGoz/ESA3PfstdL+NG6HA/GB5inVJFa
+zdlN7w//yUWxnDgBuUiOF9b++eH2Kk+cVKfgeey0Dr4RFTA1o/0nHHEngb1KiVCI
+GeDPA9KwGJudvpXJfJrMGCV+ZXVIfvc+Zq/J84NSeEzfP8knDjoAEiuz+cArU905
+UEZaTzgYv0mw3gaLsrPZk/eRuRmXvc0+cWH9TWB/teGUe/qTbcxXgZM

svn commit: r11909 [1/4] - in /dev/uima/ruta-2.4.0-rc1: eclipse-update-site/ eclipse-update-site/ruta/ eclipse-update-site/ruta/features/ eclipse-update-site/ruta/plugins/ source-release/

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 11:23:16 2016
New Revision: 11909

Log:
no jira - provide ruta-2.4.0-rc1 stuff

Added:
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/artifacts.jar   (with 
props)
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/artifacts.jar.asc
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/artifacts.jar.md5
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/artifacts.jar.sha1
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/content.jar   (with props)
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/content.jar.asc
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/content.jar.md5
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/content.jar.sha1
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.1.0.jar
   (with props)

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.1.0.jar.asc

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.1.0.jar.md5

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.1.0.jar.sha1

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.2.0.jar
   (with props)

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.2.0.jar.asc

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.2.0.jar.md5

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.2.0.jar.sha1

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.2.1.jar
   (with props)

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.2.1.jar.asc

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.2.1.jar.md5

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.2.1.jar.sha1

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.3.0.jar
   (with props)

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.3.0.jar.asc

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.3.0.jar.md5

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.3.0.jar.sha1

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.3.1.jar
   (with props)

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.3.1.jar.asc

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.3.1.jar.md5

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.3.1.jar.sha1

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.4.0.jar
   (with props)

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.4.0.jar.asc

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.4.0.jar.md5

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/features/org.apache.uima.ruta.feature_2.4.0.jar.sha1
dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.1.0.jar
   (with props)

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.1.0.jar.asc

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.1.0.jar.md5

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.1.0.jar.pack.gz
   (with props)

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.1.0.jar.pack.gz.asc

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.1.0.jar.pack.gz.md5

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.1.0.jar.pack.gz.sha1

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.1.0.jar.sha1

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.2.0.jar
   (with props)

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.2.0.jar.asc

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.2.0.jar.md5

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.2.0.jar.pack.gz
   (with props)

dev/uima/ruta-2.4.0-rc1/eclipse-update-site/ruta/plugins/org.apache.uima.ruta.addons_2.2.0.jar.pack.g

svn commit: r11908 - /dev/uima/ruta-2.4.0-rc1/

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 11:17:17 2016
New Revision: 11908

Log: (empty)

Added:
dev/uima/ruta-2.4.0-rc1/



svn commit: r1724765 - /uima/ruta/tags/ruta-2.4.0/

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 10:19:15 2016
New Revision: 1724765

URL: http://svn.apache.org/viewvc?rev=1724765&view=rev
Log:
[maven-release-plugin]  copy for tag ruta-2.4.0

Added:
uima/ruta/tags/ruta-2.4.0/   (props changed)
  - copied from r1724764, uima/ruta/trunk/

Propchange: uima/ruta/tags/ruta-2.4.0/
--
--- svn:ignore (added)
+++ svn:ignore Fri Jan 15 10:19:15 2016
@@ -0,0 +1,5 @@
+.project
+.settings
+.classpath
+issuesFixed
+target

Propchange: uima/ruta/tags/ruta-2.4.0/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Fri Jan 15 10:19:15 2016
@@ -0,0 +1,2 @@
+/uima/ruta/branches/UIMA-4408:1711496-1722822
+/uima/ruta/branches/trunk:1711495




svn commit: r1724766 - in /uima/ruta/trunk: ./ example-projects/ruta-ep-example-extensions/ example-projects/ruta-maven-example/ ruta-core-ext/ ruta-core/ ruta-docbook/ ruta-eclipse-feature/ ruta-ep-a

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 10:19:31 2016
New Revision: 1724766

URL: http://svn.apache.org/viewvc?rev=1724766&view=rev
Log:
[maven-release-plugin] prepare for next development iteration

Modified:
uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
uima/ruta/trunk/pom.xml
uima/ruta/trunk/ruta-core-ext/pom.xml
uima/ruta/trunk/ruta-core/pom.xml
uima/ruta/trunk/ruta-docbook/pom.xml
uima/ruta/trunk/ruta-eclipse-feature/pom.xml
uima/ruta/trunk/ruta-ep-addons/pom.xml
uima/ruta/trunk/ruta-ep-caseditor/pom.xml
uima/ruta/trunk/ruta-ep-core-ext/pom.xml
uima/ruta/trunk/ruta-ep-engine/pom.xml
uima/ruta/trunk/ruta-ep-ide-ui/pom.xml
uima/ruta/trunk/ruta-ep-ide/pom.xml
uima/ruta/trunk/ruta-ep-textruler/pom.xml
uima/ruta/trunk/ruta-maven-plugin/pom.xml
uima/ruta/trunk/ruta-parent/pom.xml

Modified: uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml?rev=1724766&r1=1724765&r2=1724766&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml 
(original)
+++ uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml Fri Jan 
15 10:19:31 2016
@@ -25,7 +25,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.0
+2.4.1-SNAPSHOT
 ../../ruta-parent/pom.xml
   
   

Modified: uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml?rev=1724766&r1=1724765&r2=1724766&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml (original)
+++ uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml Fri Jan 15 
10:19:31 2016
@@ -15,7 +15,7 @@

org.apache.uima
ruta-parent
-   2.4.0
+   2.4.1-SNAPSHOT
../../ruta-parent/pom.xml

${uimaWebsiteUrl}
@@ -25,9 +25,9 @@
 ${project.artifactId}
   

-   
http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
-   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
-   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
+   
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example
+   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk/example-projects/ruta-maven-example
+   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk/example-projects/ruta-maven-example




Modified: uima/ruta/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/pom.xml?rev=1724766&r1=1724765&r2=1724766&view=diff
==
--- uima/ruta/trunk/pom.xml (original)
+++ uima/ruta/trunk/pom.xml Fri Jan 15 10:19:31 2016
@@ -12,7 +12,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.0
+2.4.1-SNAPSHOT
 ruta-parent/pom.xml
   
 
@@ -39,9 +39,9 @@
 elements from the chain of parent poms, if this is omitted. Keeping this a 
bit factored allows cutting/pasting 
 the  element, and just changing the following two properties -->
   
-http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0
-
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0
-
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0
+http://svn.apache.org/viewvc/uima/ruta/trunk
+
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk
+
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk
   
 
   

Modified: uima/ruta/trunk/ruta-core-ext/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core-ext/pom.xml?rev=1724766&r1=1724765&r2=1724766&view=diff
==
--- uima/ruta/trunk/ruta-core-ext/pom.xml (original)
+++ uima/ruta/trunk/ruta-core-ext/pom.xml Fri Jan 15 10:19:31 2016
@@ -21,7 +21,7 @@

org.apache.uima
ruta-parent
-   2.4.0
+   2.4.1-SNAPSHOT
../ruta-parent/pom.xml


@@ -43,9 +43,9 @@



-   
http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0/ruta-core-ext
-   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/ruta-core-ext
-   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/ruta-core-ext
+   
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core-ext
+   
scm:s

svn commit: r1724764 - in /uima/ruta/trunk: ./ example-projects/ruta-ep-example-extensions/ example-projects/ruta-maven-example/ ruta-core-ext/ ruta-core/ ruta-docbook/ ruta-eclipse-feature/ ruta-ep-a

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 10:18:02 2016
New Revision: 1724764

URL: http://svn.apache.org/viewvc?rev=1724764&view=rev
Log:
[maven-release-plugin] prepare release ruta-2.4.0

Modified:
uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
uima/ruta/trunk/pom.xml
uima/ruta/trunk/ruta-core-ext/pom.xml
uima/ruta/trunk/ruta-core/pom.xml
uima/ruta/trunk/ruta-docbook/pom.xml
uima/ruta/trunk/ruta-eclipse-feature/pom.xml
uima/ruta/trunk/ruta-ep-addons/pom.xml
uima/ruta/trunk/ruta-ep-caseditor/pom.xml
uima/ruta/trunk/ruta-ep-core-ext/pom.xml
uima/ruta/trunk/ruta-ep-engine/pom.xml
uima/ruta/trunk/ruta-ep-ide-ui/pom.xml
uima/ruta/trunk/ruta-ep-ide/pom.xml
uima/ruta/trunk/ruta-ep-textruler/pom.xml
uima/ruta/trunk/ruta-maven-plugin/pom.xml
uima/ruta/trunk/ruta-parent/pom.xml

Modified: uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml?rev=1724764&r1=1724763&r2=1724764&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml 
(original)
+++ uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml Fri Jan 
15 10:18:02 2016
@@ -25,7 +25,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.0-SNAPSHOT
+2.4.0
 ../../ruta-parent/pom.xml
   
   

Modified: uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml?rev=1724764&r1=1724763&r2=1724764&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml (original)
+++ uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml Fri Jan 15 
10:18:02 2016
@@ -15,7 +15,7 @@

org.apache.uima
ruta-parent
-   2.4.0-SNAPSHOT
+   2.4.0
../../ruta-parent/pom.xml

${uimaWebsiteUrl}
@@ -25,9 +25,9 @@
 ${project.artifactId}
   

-   
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example
-   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk/example-projects/ruta-maven-example
-   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk/example-projects/ruta-maven-example
+   
http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
+   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
+   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example




Modified: uima/ruta/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/pom.xml?rev=1724764&r1=1724763&r2=1724764&view=diff
==
--- uima/ruta/trunk/pom.xml (original)
+++ uima/ruta/trunk/pom.xml Fri Jan 15 10:18:02 2016
@@ -12,7 +12,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.0-SNAPSHOT
+2.4.0
 ruta-parent/pom.xml
   
 
@@ -39,9 +39,9 @@
 elements from the chain of parent poms, if this is omitted. Keeping this a 
bit factored allows cutting/pasting 
 the  element, and just changing the following two properties -->
   
-http://svn.apache.org/viewvc/uima/ruta/trunk
-
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk
-
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk
+http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0
+
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0
+
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0
   
 
   

Modified: uima/ruta/trunk/ruta-core-ext/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core-ext/pom.xml?rev=1724764&r1=1724763&r2=1724764&view=diff
==
--- uima/ruta/trunk/ruta-core-ext/pom.xml (original)
+++ uima/ruta/trunk/ruta-core-ext/pom.xml Fri Jan 15 10:18:02 2016
@@ -21,7 +21,7 @@

org.apache.uima
ruta-parent
-   2.4.0-SNAPSHOT
+   2.4.0
../ruta-parent/pom.xml


@@ -43,9 +43,9 @@



-   
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core-ext
-   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk/ruta-core-ext
-   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk/ruta-core-ext
+   
http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0/ruta-core-ext
+   
scm:svn:http://svn.apache.org/repos/a

svn commit: r1724758 - in /uima/ruta/trunk: ./ example-projects/ruta-ep-example-extensions/ example-projects/ruta-maven-example/ ruta-core-ext/ ruta-core/ ruta-docbook/ ruta-eclipse-feature/ ruta-ep-a

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 10:07:36 2016
New Revision: 1724758

URL: http://svn.apache.org/viewvc?rev=1724758&view=rev
Log:
no jira - manual rollback

Modified:
uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
uima/ruta/trunk/pom.xml
uima/ruta/trunk/ruta-core-ext/pom.xml
uima/ruta/trunk/ruta-core/pom.xml
uima/ruta/trunk/ruta-docbook/pom.xml
uima/ruta/trunk/ruta-eclipse-feature/pom.xml
uima/ruta/trunk/ruta-ep-addons/pom.xml
uima/ruta/trunk/ruta-ep-caseditor/pom.xml
uima/ruta/trunk/ruta-ep-core-ext/pom.xml
uima/ruta/trunk/ruta-ep-engine/pom.xml
uima/ruta/trunk/ruta-ep-ide-ui/pom.xml
uima/ruta/trunk/ruta-ep-ide/pom.xml
uima/ruta/trunk/ruta-ep-textruler/pom.xml
uima/ruta/trunk/ruta-maven-plugin/pom.xml
uima/ruta/trunk/ruta-parent/pom.xml

Modified: uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml?rev=1724758&r1=1724757&r2=1724758&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml 
(original)
+++ uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml Fri Jan 
15 10:07:36 2016
@@ -25,7 +25,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.1-SNAPSHOT
+2.4.0-SNAPSHOT
 ../../ruta-parent/pom.xml
   
   

Modified: uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml?rev=1724758&r1=1724757&r2=1724758&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml (original)
+++ uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml Fri Jan 15 
10:07:36 2016
@@ -15,7 +15,7 @@

org.apache.uima
ruta-parent
-   2.4.1-SNAPSHOT
+   2.4.0-SNAPSHOT
../../ruta-parent/pom.xml

${uimaWebsiteUrl}

Modified: uima/ruta/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/pom.xml?rev=1724758&r1=1724757&r2=1724758&view=diff
==
--- uima/ruta/trunk/pom.xml (original)
+++ uima/ruta/trunk/pom.xml Fri Jan 15 10:07:36 2016
@@ -12,7 +12,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.1-SNAPSHOT
+2.4.0-SNAPSHOT
 ruta-parent/pom.xml
   
 

Modified: uima/ruta/trunk/ruta-core-ext/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core-ext/pom.xml?rev=1724758&r1=1724757&r2=1724758&view=diff
==
--- uima/ruta/trunk/ruta-core-ext/pom.xml (original)
+++ uima/ruta/trunk/ruta-core-ext/pom.xml Fri Jan 15 10:07:36 2016
@@ -21,7 +21,7 @@

org.apache.uima
ruta-parent
-   2.4.1-SNAPSHOT
+   2.4.0-SNAPSHOT
../ruta-parent/pom.xml



Modified: uima/ruta/trunk/ruta-core/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core/pom.xml?rev=1724758&r1=1724757&r2=1724758&view=diff
==
--- uima/ruta/trunk/ruta-core/pom.xml (original)
+++ uima/ruta/trunk/ruta-core/pom.xml Fri Jan 15 10:07:36 2016
@@ -16,7 +16,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.1-SNAPSHOT
+2.4.0-SNAPSHOT
 ../ruta-parent/pom.xml
   
   

Modified: uima/ruta/trunk/ruta-docbook/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-docbook/pom.xml?rev=1724758&r1=1724757&r2=1724758&view=diff
==
--- uima/ruta/trunk/ruta-docbook/pom.xml (original)
+++ uima/ruta/trunk/ruta-docbook/pom.xml Fri Jan 15 10:07:36 2016
@@ -24,7 +24,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.1-SNAPSHOT
+2.4.0-SNAPSHOT
 ../ruta-parent/pom.xml
   
   Apache UIMA Ruta Documentation

Modified: uima/ruta/trunk/ruta-eclipse-feature/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-eclipse-feature/pom.xml?rev=1724758&r1=1724757&r2=1724758&view=diff
==
--- uima/ruta/trunk/ruta-eclipse-feature/pom.xml (original)
+++ uima/ruta/trunk/ruta-eclipse-feature/pom.xml Fri Jan 15 10:07:36 2016
@@ -23,7 +23,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.1-SNAPSHOT
+2.4.0-SNAPSHOT
 ../ruta-parent/pom.xml
   
 

Modified: uima/ruta/trunk/ruta-ep-addons/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-ep-addons/pom.xml?rev=1724758&r1=1724757&r2=1724758&view=diff
==

svn commit: r1724757 - /uima/ruta/tags/ruta-2.4.0/

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 10:04:05 2016
New Revision: 1724757

URL: http://svn.apache.org/viewvc?rev=1724757&view=rev
Log:
no jira - remove rc1

Removed:
uima/ruta/tags/ruta-2.4.0/



svn commit: r1724751 - in /uima/ruta/trunk: ./ example-projects/ruta-ep-example-extensions/ example-projects/ruta-maven-example/ ruta-core-ext/ ruta-core/ ruta-docbook/ ruta-eclipse-feature/ ruta-ep-a

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 09:36:04 2016
New Revision: 1724751

URL: http://svn.apache.org/viewvc?rev=1724751&view=rev
Log:
[maven-release-plugin] prepare for next development iteration

Modified:
uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
uima/ruta/trunk/pom.xml
uima/ruta/trunk/ruta-core-ext/pom.xml
uima/ruta/trunk/ruta-core/pom.xml
uima/ruta/trunk/ruta-docbook/pom.xml
uima/ruta/trunk/ruta-eclipse-feature/pom.xml
uima/ruta/trunk/ruta-ep-addons/pom.xml
uima/ruta/trunk/ruta-ep-caseditor/pom.xml
uima/ruta/trunk/ruta-ep-core-ext/pom.xml
uima/ruta/trunk/ruta-ep-engine/pom.xml
uima/ruta/trunk/ruta-ep-ide-ui/pom.xml
uima/ruta/trunk/ruta-ep-ide/pom.xml
uima/ruta/trunk/ruta-ep-textruler/pom.xml
uima/ruta/trunk/ruta-maven-plugin/pom.xml
uima/ruta/trunk/ruta-parent/pom.xml

Modified: uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml?rev=1724751&r1=1724750&r2=1724751&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml 
(original)
+++ uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml Fri Jan 
15 09:36:04 2016
@@ -25,7 +25,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.0
+2.4.1-SNAPSHOT
 ../../ruta-parent/pom.xml
   
   

Modified: uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml?rev=1724751&r1=1724750&r2=1724751&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml (original)
+++ uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml Fri Jan 15 
09:36:04 2016
@@ -15,7 +15,7 @@

org.apache.uima
ruta-parent
-   2.4.0
+   2.4.1-SNAPSHOT
../../ruta-parent/pom.xml

${uimaWebsiteUrl}
@@ -25,9 +25,9 @@
 ${project.artifactId}
   

-   
http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
-   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
-   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
+   
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example
+   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk/example-projects/ruta-maven-example
+   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk/example-projects/ruta-maven-example




Modified: uima/ruta/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/pom.xml?rev=1724751&r1=1724750&r2=1724751&view=diff
==
--- uima/ruta/trunk/pom.xml (original)
+++ uima/ruta/trunk/pom.xml Fri Jan 15 09:36:04 2016
@@ -12,7 +12,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.0
+2.4.1-SNAPSHOT
 ruta-parent/pom.xml
   
 
@@ -39,9 +39,9 @@
 elements from the chain of parent poms, if this is omitted. Keeping this a 
bit factored allows cutting/pasting 
 the  element, and just changing the following two properties -->
   
-http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0
-
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0
-
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0
+http://svn.apache.org/viewvc/uima/ruta/trunk
+
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk
+
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk
   
 
   

Modified: uima/ruta/trunk/ruta-core-ext/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core-ext/pom.xml?rev=1724751&r1=1724750&r2=1724751&view=diff
==
--- uima/ruta/trunk/ruta-core-ext/pom.xml (original)
+++ uima/ruta/trunk/ruta-core-ext/pom.xml Fri Jan 15 09:36:04 2016
@@ -21,7 +21,7 @@

org.apache.uima
ruta-parent
-   2.4.0
+   2.4.1-SNAPSHOT
../ruta-parent/pom.xml


@@ -43,9 +43,9 @@



-   
http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0/ruta-core-ext
-   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/ruta-core-ext
-   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/ruta-core-ext
+   
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core-ext
+   
scm:s

svn commit: r1724750 - /uima/ruta/tags/ruta-2.4.0/

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 09:35:49 2016
New Revision: 1724750

URL: http://svn.apache.org/viewvc?rev=1724750&view=rev
Log:
[maven-release-plugin]  copy for tag ruta-2.4.0

Added:
uima/ruta/tags/ruta-2.4.0/   (props changed)
  - copied from r1724747, uima/ruta/trunk/

Propchange: uima/ruta/tags/ruta-2.4.0/
--
--- svn:ignore (added)
+++ svn:ignore Fri Jan 15 09:35:49 2016
@@ -0,0 +1,5 @@
+.project
+.settings
+.classpath
+issuesFixed
+target

Propchange: uima/ruta/tags/ruta-2.4.0/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Fri Jan 15 09:35:49 2016
@@ -0,0 +1,2 @@
+/uima/ruta/branches/UIMA-4408:1711496-1722822
+/uima/ruta/branches/trunk:1711495




svn commit: r1724749 - in /uima/ruta/trunk: ./ example-projects/ruta-ep-example-extensions/ example-projects/ruta-maven-example/ ruta-core-ext/ ruta-core/ ruta-docbook/ ruta-eclipse-feature/ ruta-ep-a

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 09:35:25 2016
New Revision: 1724749

URL: http://svn.apache.org/viewvc?rev=1724749&view=rev
Log:
[maven-release-plugin] prepare release ruta-2.4.0

Modified:
uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
uima/ruta/trunk/pom.xml
uima/ruta/trunk/ruta-core-ext/pom.xml
uima/ruta/trunk/ruta-core/pom.xml
uima/ruta/trunk/ruta-docbook/pom.xml
uima/ruta/trunk/ruta-eclipse-feature/pom.xml
uima/ruta/trunk/ruta-ep-addons/pom.xml
uima/ruta/trunk/ruta-ep-caseditor/pom.xml
uima/ruta/trunk/ruta-ep-core-ext/pom.xml
uima/ruta/trunk/ruta-ep-engine/pom.xml
uima/ruta/trunk/ruta-ep-ide-ui/pom.xml
uima/ruta/trunk/ruta-ep-ide/pom.xml
uima/ruta/trunk/ruta-ep-textruler/pom.xml
uima/ruta/trunk/ruta-maven-plugin/pom.xml
uima/ruta/trunk/ruta-parent/pom.xml

Modified: uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml?rev=1724749&r1=1724748&r2=1724749&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml 
(original)
+++ uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml Fri Jan 
15 09:35:25 2016
@@ -25,7 +25,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.0-SNAPSHOT
+2.4.0
 ../../ruta-parent/pom.xml
   
   

Modified: uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml?rev=1724749&r1=1724748&r2=1724749&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml (original)
+++ uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml Fri Jan 15 
09:35:25 2016
@@ -15,7 +15,7 @@

org.apache.uima
ruta-parent
-   2.4.0-SNAPSHOT
+   2.4.0
../../ruta-parent/pom.xml

${uimaWebsiteUrl}
@@ -25,9 +25,9 @@
 ${project.artifactId}
   

-   
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example
-   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk/example-projects/ruta-maven-example
-   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk/example-projects/ruta-maven-example
+   
http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
+   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
+   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example




Modified: uima/ruta/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/pom.xml?rev=1724749&r1=1724748&r2=1724749&view=diff
==
--- uima/ruta/trunk/pom.xml (original)
+++ uima/ruta/trunk/pom.xml Fri Jan 15 09:35:25 2016
@@ -12,7 +12,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.0-SNAPSHOT
+2.4.0
 ruta-parent/pom.xml
   
 
@@ -39,9 +39,9 @@
 elements from the chain of parent poms, if this is omitted. Keeping this a 
bit factored allows cutting/pasting 
 the  element, and just changing the following two properties -->
   
-http://svn.apache.org/viewvc/uima/ruta/trunk
-
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk
-
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk
+http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0
+
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0
+
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0
   
 
   

Modified: uima/ruta/trunk/ruta-core-ext/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core-ext/pom.xml?rev=1724749&r1=1724748&r2=1724749&view=diff
==
--- uima/ruta/trunk/ruta-core-ext/pom.xml (original)
+++ uima/ruta/trunk/ruta-core-ext/pom.xml Fri Jan 15 09:35:25 2016
@@ -21,7 +21,7 @@

org.apache.uima
ruta-parent
-   2.4.0-SNAPSHOT
+   2.4.0
../ruta-parent/pom.xml


@@ -43,9 +43,9 @@



-   
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core-ext
-   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk/ruta-core-ext
-   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk/ruta-core-ext
+   
http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0/ruta-core-ext
+   
scm:svn:http://svn.apache.org/repos/a

svn commit: r1724747 - /uima/ruta/tags/ruta-2.4.0/

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 09:21:30 2016
New Revision: 1724747

URL: http://svn.apache.org/viewvc?rev=1724747&view=rev
Log:
no jira - remove rc1

Removed:
uima/ruta/tags/ruta-2.4.0/



svn commit: r1724746 - /uima/ruta/trunk/ruta-eclipse-update-site/pom.xml

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 09:19:20 2016
New Revision: 1724746

URL: http://svn.apache.org/viewvc?rev=1724746&view=rev
Log:
no jira - update version of update site

Modified:
uima/ruta/trunk/ruta-eclipse-update-site/pom.xml

Modified: uima/ruta/trunk/ruta-eclipse-update-site/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-eclipse-update-site/pom.xml?rev=1724746&r1=1724745&r2=1724746&view=diff
==
--- uima/ruta/trunk/ruta-eclipse-update-site/pom.xml (original)
+++ uima/ruta/trunk/ruta-eclipse-update-site/pom.xml Fri Jan 15 09:19:20 2016
@@ -29,7 +29,7 @@
   
ruta-eclipse-update-site
pom
-   2.3.1
+   2.4.0
   
Apache UIMA Ruta Eclipse: ${project.artifactId}
   The UIMA Ruta Eclipse update site
@@ -51,8 +51,8 @@
 ${project.artifactId}
 ruta
 
${project.build.directory}/eclipse-update-site/${eclipseUpdateSiteComponent}
-2.3.1
-2.3.1
+2.4.0
+2.4.0
   

 




svn commit: r1724745 - in /uima/ruta/trunk: ./ example-projects/ruta-ep-example-extensions/ example-projects/ruta-maven-example/ ruta-core-ext/ ruta-core/ ruta-docbook/ ruta-eclipse-feature/ ruta-ep-a

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 09:18:15 2016
New Revision: 1724745

URL: http://svn.apache.org/viewvc?rev=1724745&view=rev
Log:
no jira - manual rollback

Modified:
uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
uima/ruta/trunk/pom.xml
uima/ruta/trunk/ruta-core-ext/pom.xml
uima/ruta/trunk/ruta-core/pom.xml
uima/ruta/trunk/ruta-docbook/pom.xml
uima/ruta/trunk/ruta-eclipse-feature/pom.xml
uima/ruta/trunk/ruta-ep-addons/pom.xml
uima/ruta/trunk/ruta-ep-caseditor/pom.xml
uima/ruta/trunk/ruta-ep-core-ext/pom.xml
uima/ruta/trunk/ruta-ep-engine/pom.xml
uima/ruta/trunk/ruta-ep-ide-ui/pom.xml
uima/ruta/trunk/ruta-ep-ide/pom.xml
uima/ruta/trunk/ruta-ep-textruler/pom.xml
uima/ruta/trunk/ruta-maven-plugin/pom.xml
uima/ruta/trunk/ruta-parent/pom.xml

Modified: uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml?rev=1724745&r1=1724744&r2=1724745&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml 
(original)
+++ uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml Fri Jan 
15 09:18:15 2016
@@ -25,7 +25,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.1-SNAPSHOT
+2.4.0-SNAPSHOT
 ../../ruta-parent/pom.xml
   
   

Modified: uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml?rev=1724745&r1=1724744&r2=1724745&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml (original)
+++ uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml Fri Jan 15 
09:18:15 2016
@@ -15,7 +15,7 @@

org.apache.uima
ruta-parent
-   2.4.1-SNAPSHOT
+   2.4.0-SNAPSHOT
../../ruta-parent/pom.xml

${uimaWebsiteUrl}

Modified: uima/ruta/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/pom.xml?rev=1724745&r1=1724744&r2=1724745&view=diff
==
--- uima/ruta/trunk/pom.xml (original)
+++ uima/ruta/trunk/pom.xml Fri Jan 15 09:18:15 2016
@@ -12,7 +12,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.1-SNAPSHOT
+2.4.0-SNAPSHOT
 ruta-parent/pom.xml
   
 

Modified: uima/ruta/trunk/ruta-core-ext/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core-ext/pom.xml?rev=1724745&r1=1724744&r2=1724745&view=diff
==
--- uima/ruta/trunk/ruta-core-ext/pom.xml (original)
+++ uima/ruta/trunk/ruta-core-ext/pom.xml Fri Jan 15 09:18:15 2016
@@ -21,7 +21,7 @@

org.apache.uima
ruta-parent
-   2.4.1-SNAPSHOT
+   2.4.0-SNAPSHOT
../ruta-parent/pom.xml



Modified: uima/ruta/trunk/ruta-core/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core/pom.xml?rev=1724745&r1=1724744&r2=1724745&view=diff
==
--- uima/ruta/trunk/ruta-core/pom.xml (original)
+++ uima/ruta/trunk/ruta-core/pom.xml Fri Jan 15 09:18:15 2016
@@ -16,7 +16,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.1-SNAPSHOT
+2.4.0-SNAPSHOT
 ../ruta-parent/pom.xml
   
   

Modified: uima/ruta/trunk/ruta-docbook/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-docbook/pom.xml?rev=1724745&r1=1724744&r2=1724745&view=diff
==
--- uima/ruta/trunk/ruta-docbook/pom.xml (original)
+++ uima/ruta/trunk/ruta-docbook/pom.xml Fri Jan 15 09:18:15 2016
@@ -24,7 +24,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.1-SNAPSHOT
+2.4.0-SNAPSHOT
 ../ruta-parent/pom.xml
   
   Apache UIMA Ruta Documentation

Modified: uima/ruta/trunk/ruta-eclipse-feature/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-eclipse-feature/pom.xml?rev=1724745&r1=1724744&r2=1724745&view=diff
==
--- uima/ruta/trunk/ruta-eclipse-feature/pom.xml (original)
+++ uima/ruta/trunk/ruta-eclipse-feature/pom.xml Fri Jan 15 09:18:15 2016
@@ -23,7 +23,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.1-SNAPSHOT
+2.4.0-SNAPSHOT
 ../ruta-parent/pom.xml
   
 

Modified: uima/ruta/trunk/ruta-ep-addons/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-ep-addons/pom.xml?rev=1724745&r1=1724744&r2=1724745&view=diff
==

svn commit: r1724739 - in /uima/ruta/trunk: ./ example-projects/ruta-ep-example-extensions/ example-projects/ruta-maven-example/ ruta-core-ext/ ruta-core/ ruta-docbook/ ruta-eclipse-feature/ ruta-ep-a

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 08:38:05 2016
New Revision: 1724739

URL: http://svn.apache.org/viewvc?rev=1724739&view=rev
Log:
[maven-release-plugin] prepare for next development iteration

Modified:
uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
uima/ruta/trunk/pom.xml
uima/ruta/trunk/ruta-core-ext/pom.xml
uima/ruta/trunk/ruta-core/pom.xml
uima/ruta/trunk/ruta-docbook/pom.xml
uima/ruta/trunk/ruta-eclipse-feature/pom.xml
uima/ruta/trunk/ruta-ep-addons/pom.xml
uima/ruta/trunk/ruta-ep-caseditor/pom.xml
uima/ruta/trunk/ruta-ep-core-ext/pom.xml
uima/ruta/trunk/ruta-ep-engine/pom.xml
uima/ruta/trunk/ruta-ep-ide-ui/pom.xml
uima/ruta/trunk/ruta-ep-ide/pom.xml
uima/ruta/trunk/ruta-ep-textruler/pom.xml
uima/ruta/trunk/ruta-maven-plugin/pom.xml
uima/ruta/trunk/ruta-parent/pom.xml

Modified: uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml?rev=1724739&r1=1724738&r2=1724739&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml 
(original)
+++ uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml Fri Jan 
15 08:38:05 2016
@@ -25,7 +25,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.0
+2.4.1-SNAPSHOT
 ../../ruta-parent/pom.xml
   
   

Modified: uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml?rev=1724739&r1=1724738&r2=1724739&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml (original)
+++ uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml Fri Jan 15 
08:38:05 2016
@@ -15,7 +15,7 @@

org.apache.uima
ruta-parent
-   2.4.0
+   2.4.1-SNAPSHOT
../../ruta-parent/pom.xml

${uimaWebsiteUrl}
@@ -25,9 +25,9 @@
 ${project.artifactId}
   

-   
http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
-   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
-   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
+   
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example
+   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk/example-projects/ruta-maven-example
+   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk/example-projects/ruta-maven-example




Modified: uima/ruta/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/pom.xml?rev=1724739&r1=1724738&r2=1724739&view=diff
==
--- uima/ruta/trunk/pom.xml (original)
+++ uima/ruta/trunk/pom.xml Fri Jan 15 08:38:05 2016
@@ -12,7 +12,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.0
+2.4.1-SNAPSHOT
 ruta-parent/pom.xml
   
 
@@ -39,9 +39,9 @@
 elements from the chain of parent poms, if this is omitted. Keeping this a 
bit factored allows cutting/pasting 
 the  element, and just changing the following two properties -->
   
-http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0
-
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0
-
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0
+http://svn.apache.org/viewvc/uima/ruta/trunk
+
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk
+
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk
   
 
   

Modified: uima/ruta/trunk/ruta-core-ext/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core-ext/pom.xml?rev=1724739&r1=1724738&r2=1724739&view=diff
==
--- uima/ruta/trunk/ruta-core-ext/pom.xml (original)
+++ uima/ruta/trunk/ruta-core-ext/pom.xml Fri Jan 15 08:38:05 2016
@@ -21,7 +21,7 @@

org.apache.uima
ruta-parent
-   2.4.0
+   2.4.1-SNAPSHOT
../ruta-parent/pom.xml


@@ -43,9 +43,9 @@



-   
http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0/ruta-core-ext
-   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/ruta-core-ext
-   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/ruta-core-ext
+   
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core-ext
+   
scm:s

svn commit: r1724738 - /uima/ruta/tags/ruta-2.4.0/

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 08:37:49 2016
New Revision: 1724738

URL: http://svn.apache.org/viewvc?rev=1724738&view=rev
Log:
[maven-release-plugin]  copy for tag ruta-2.4.0

Added:
uima/ruta/tags/ruta-2.4.0/   (props changed)
  - copied from r1724737, uima/ruta/trunk/

Propchange: uima/ruta/tags/ruta-2.4.0/
--
--- svn:ignore (added)
+++ svn:ignore Fri Jan 15 08:37:49 2016
@@ -0,0 +1,5 @@
+.project
+.settings
+.classpath
+issuesFixed
+target

Propchange: uima/ruta/tags/ruta-2.4.0/
--
--- svn:mergeinfo (added)
+++ svn:mergeinfo Fri Jan 15 08:37:49 2016
@@ -0,0 +1,2 @@
+/uima/ruta/branches/UIMA-4408:1711496-1722822
+/uima/ruta/branches/trunk:1711495




svn commit: r1724737 - in /uima/ruta/trunk: ./ example-projects/ruta-ep-example-extensions/ example-projects/ruta-maven-example/ ruta-core-ext/ ruta-core/ ruta-docbook/ ruta-eclipse-feature/ ruta-ep-a

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 08:36:20 2016
New Revision: 1724737

URL: http://svn.apache.org/viewvc?rev=1724737&view=rev
Log:
[maven-release-plugin] prepare release ruta-2.4.0

Modified:
uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
uima/ruta/trunk/pom.xml
uima/ruta/trunk/ruta-core-ext/pom.xml
uima/ruta/trunk/ruta-core/pom.xml
uima/ruta/trunk/ruta-docbook/pom.xml
uima/ruta/trunk/ruta-eclipse-feature/pom.xml
uima/ruta/trunk/ruta-ep-addons/pom.xml
uima/ruta/trunk/ruta-ep-caseditor/pom.xml
uima/ruta/trunk/ruta-ep-core-ext/pom.xml
uima/ruta/trunk/ruta-ep-engine/pom.xml
uima/ruta/trunk/ruta-ep-ide-ui/pom.xml
uima/ruta/trunk/ruta-ep-ide/pom.xml
uima/ruta/trunk/ruta-ep-textruler/pom.xml
uima/ruta/trunk/ruta-maven-plugin/pom.xml
uima/ruta/trunk/ruta-parent/pom.xml

Modified: uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml?rev=1724737&r1=1724736&r2=1724737&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml 
(original)
+++ uima/ruta/trunk/example-projects/ruta-ep-example-extensions/pom.xml Fri Jan 
15 08:36:20 2016
@@ -25,7 +25,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.0-SNAPSHOT
+2.4.0
 ../../ruta-parent/pom.xml
   
   

Modified: uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml?rev=1724737&r1=1724736&r2=1724737&view=diff
==
--- uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml (original)
+++ uima/ruta/trunk/example-projects/ruta-maven-example/pom.xml Fri Jan 15 
08:36:20 2016
@@ -15,7 +15,7 @@

org.apache.uima
ruta-parent
-   2.4.0-SNAPSHOT
+   2.4.0
../../ruta-parent/pom.xml

${uimaWebsiteUrl}
@@ -25,9 +25,9 @@
 ${project.artifactId}
   

-   
http://svn.apache.org/viewvc/uima/ruta/trunk/example-projects/ruta-maven-example
-   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk/example-projects/ruta-maven-example
-   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk/example-projects/ruta-maven-example
+   
http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
+   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example
+   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0/example-projects/ruta-maven-example




Modified: uima/ruta/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/pom.xml?rev=1724737&r1=1724736&r2=1724737&view=diff
==
--- uima/ruta/trunk/pom.xml (original)
+++ uima/ruta/trunk/pom.xml Fri Jan 15 08:36:20 2016
@@ -12,7 +12,7 @@
   
 org.apache.uima
 ruta-parent
-2.4.0-SNAPSHOT
+2.4.0
 ruta-parent/pom.xml
   
 
@@ -39,9 +39,9 @@
 elements from the chain of parent poms, if this is omitted. Keeping this a 
bit factored allows cutting/pasting 
 the  element, and just changing the following two properties -->
   
-http://svn.apache.org/viewvc/uima/ruta/trunk
-
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk
-
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk
+http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0
+
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0
+
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/tags/ruta-2.4.0
   
 
   

Modified: uima/ruta/trunk/ruta-core-ext/pom.xml
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core-ext/pom.xml?rev=1724737&r1=1724736&r2=1724737&view=diff
==
--- uima/ruta/trunk/ruta-core-ext/pom.xml (original)
+++ uima/ruta/trunk/ruta-core-ext/pom.xml Fri Jan 15 08:36:20 2016
@@ -21,7 +21,7 @@

org.apache.uima
ruta-parent
-   2.4.0-SNAPSHOT
+   2.4.0
../ruta-parent/pom.xml


@@ -43,9 +43,9 @@



-   
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core-ext
-   
scm:svn:http://svn.apache.org/repos/asf/uima/ruta/trunk/ruta-core-ext
-   
scm:svn:https://svn.apache.org/repos/asf/uima/ruta/trunk/ruta-core-ext
+   
http://svn.apache.org/viewvc/uima/ruta/tags/ruta-2.4.0/ruta-core-ext
+   
scm:svn:http://svn.apache.org/repos/a

svn commit: r1724736 - in /uima/ruta/trunk: README RELEASE_NOTES.html ruta-core/src/main/antlr3/org/apache/uima/ruta/parser/RutaParser.g

2016-01-15 Thread pkluegl
Author: pkluegl
Date: Fri Jan 15 08:23:08 2016
New Revision: 1724736

URL: http://svn.apache.org/viewvc?rev=1724736&view=rev
Log:
UIMA-4661
- updated release notes

Modified:
uima/ruta/trunk/README
uima/ruta/trunk/RELEASE_NOTES.html

uima/ruta/trunk/ruta-core/src/main/antlr3/org/apache/uima/ruta/parser/RutaParser.g

Modified: uima/ruta/trunk/README
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/README?rev=1724736&r1=1724735&r2=1724736&view=diff
==
--- uima/ruta/trunk/README (original)
+++ uima/ruta/trunk/README Fri Jan 15 08:23:08 2016
@@ -1,5 +1,5 @@
 
-Apache UIMA Ruta (TM) v2.3.0
+Apache UIMA Ruta (TM) v2.4.0
 -
 
 Building from the Source Distribution

Modified: uima/ruta/trunk/RELEASE_NOTES.html
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/RELEASE_NOTES.html?rev=1724736&r1=1724735&r2=1724736&view=diff
==
--- uima/ruta/trunk/RELEASE_NOTES.html (original)
+++ uima/ruta/trunk/RELEASE_NOTES.html Fri Jan 15 08:23:08 2016
@@ -21,10 +21,10 @@
-->
 
 
-  Apache UIMA Ruta v2.3.1 Release Notes
+  Apache UIMA Ruta v2.4.0 Release Notes
 
 
-Apache UIMA Ruta™ v2.3.1 Release Notes
+Apache UIMA Ruta™ v2.4.0 Release Notes
 
 Contents
 
@@ -48,7 +48,27 @@
 
 2. Major Changes in this Release
 
-  This is a bugfix release. It fixes diverse problems of the rule inference, 
the ruta-maven-plugin and the UIMA Ruta Workbench.
+  UIMA Ruta Language and Analysis Engine:
+  
+Explicit referencing of annotations with variables, labels and 
addresses
+Helper methods for applying rules directly in Java code
+New action for splitting annotations
+New block for resetting match context
+Import of uimaFIT analysis engines with manditory parameters
+Macros for conditions and actions (prototypical)
+Limited support of UIMA arrays (prototypical)
+Many, many bug fixes and improvements
+  
+  UIMA Ruta Workbench:
+  
+More support of external files
+Bug fixes
+  
+  
+This release requires an update of script projects and its descriptors in 
the UIMA Ruta Workbench, 
+   e.g, by deleting all descriptors and updating the script project.
+   Right-click on a project and select "UIMA Ruta -> Convert to UIMA Ruta 
project
+
 
  
   

Modified: 
uima/ruta/trunk/ruta-core/src/main/antlr3/org/apache/uima/ruta/parser/RutaParser.g
URL: 
http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core/src/main/antlr3/org/apache/uima/ruta/parser/RutaParser.g?rev=1724736&r1=1724735&r2=1724736&view=diff
==
--- 
uima/ruta/trunk/ruta-core/src/main/antlr3/org/apache/uima/ruta/parser/RutaParser.g
 (original)
+++ 
uima/ruta/trunk/ruta-core/src/main/antlr3/org/apache/uima/ruta/parser/RutaParser.g
 Fri Jan 15 08:23:08 2016
@@ -293,6 +293,7 @@ public void setExternalFactory(RutaExter
 * @param parent - Block where the type should be imported.
 * @param typesystem - Typesystem from which to import the type.
 * @param qualifiedType - Type to import from the typesystem.
+* @param alias - aliad for the imported type
 */
 public void importTypeFromTypeSystem(RutaBlock parent, String typesystem, 
String qualifiedType, Token alias) {
 if (alias == null) {