You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by sc...@apache.org on 2014/11/20 23:18:15 UTC

svn commit: r1640830 - in /uima/uimaj/trunk: ./ PearPackagingMavenPlugin/ aggregate-uimaj-docbooks/ aggregate-uimaj-eclipse-plugins/ aggregate-uimaj/ jVinci/ jcasgen-maven-plugin/ uima-docbook-overview-and-setup/ uima-docbook-references/ uima-docbook-t...

Author: schor
Date: Thu Nov 20 22:18:14 2014
New Revision: 1640830

URL: http://svn.apache.org/r1640830
Log:
no Jira - preparation work for 2.7.0 release - convert poms to 2.7.0-SNAPSHOT, update readme, releasenotes

Modified:
    uima/uimaj/trunk/PearPackagingMavenPlugin/pom.xml
    uima/uimaj/trunk/README
    uima/uimaj/trunk/RELEASE_NOTES.html
    uima/uimaj/trunk/aggregate-uimaj-docbooks/pom.xml
    uima/uimaj/trunk/aggregate-uimaj-eclipse-plugins/pom.xml
    uima/uimaj/trunk/aggregate-uimaj/pom.xml
    uima/uimaj/trunk/jVinci/pom.xml
    uima/uimaj/trunk/jcasgen-maven-plugin/pom.xml
    uima/uimaj/trunk/pom.xml
    uima/uimaj/trunk/uima-docbook-overview-and-setup/pom.xml
    uima/uimaj/trunk/uima-docbook-references/pom.xml
    uima/uimaj/trunk/uima-docbook-tools/pom.xml
    uima/uimaj/trunk/uima-docbook-tutorials-and-users-guides/pom.xml
    uima/uimaj/trunk/uimaj-adapter-soap/pom.xml
    uima/uimaj/trunk/uimaj-adapter-vinci/pom.xml
    uima/uimaj/trunk/uimaj-bootstrap/pom.xml
    uima/uimaj/trunk/uimaj-component-test-util/pom.xml
    uima/uimaj/trunk/uimaj-core/pom.xml
    uima/uimaj/trunk/uimaj-cpe/pom.xml
    uima/uimaj/trunk/uimaj-document-annotation/pom.xml
    uima/uimaj/trunk/uimaj-eclipse-feature-runtime/pom.xml
    uima/uimaj/trunk/uimaj-eclipse-feature-tools/pom.xml
    uima/uimaj/trunk/uimaj-eclipse-update-site/pom.xml
    uima/uimaj/trunk/uimaj-ep-cas-editor-ide/pom.xml
    uima/uimaj/trunk/uimaj-ep-cas-editor/pom.xml
    uima/uimaj/trunk/uimaj-ep-configurator/pom.xml
    uima/uimaj/trunk/uimaj-ep-debug/pom.xml
    uima/uimaj/trunk/uimaj-ep-jcasgen/pom.xml
    uima/uimaj/trunk/uimaj-ep-launcher/pom.xml
    uima/uimaj/trunk/uimaj-ep-pear-packager/pom.xml
    uima/uimaj/trunk/uimaj-ep-runtime/pom.xml
    uima/uimaj/trunk/uimaj-examples/pom.xml
    uima/uimaj/trunk/uimaj-json/pom.xml
    uima/uimaj/trunk/uimaj-parent/pom.xml
    uima/uimaj/trunk/uimaj-test-util/pom.xml
    uima/uimaj/trunk/uimaj-tools/pom.xml

Modified: uima/uimaj/trunk/PearPackagingMavenPlugin/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/PearPackagingMavenPlugin/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/PearPackagingMavenPlugin/pom.xml (original)
+++ uima/uimaj/trunk/PearPackagingMavenPlugin/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/README
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/README?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/README (original)
+++ uima/uimaj/trunk/README Thu Nov 20 22:18:14 2014
@@ -1,5 +1,5 @@
 
-      Apache UIMA (Unstructured Information Management Architecture) v2.6.0 SDK
+      Apache UIMA (Unstructured Information Management Architecture) v2.7.0 SDK
       -------------------------------------------------------------------------
 
 Building from the Source Distribution
@@ -21,25 +21,54 @@ Look for the result here: 
 
 For more details, please see http://uima.apache.org/building-uima.html   
 
-What's New in 2.6.1
+What's New in 2.7.0
 -------------------
 
+  Java 7 is now required (since UIMA-SDK 2.7.0)
+  
   JSON serialization support is added for Type System Descriptions, and for CASs.
   Several formats for JSON CAS serialization are provided, please see the chapter in the
   UIMA reference documentation for details.
   
-  The complete list of fixes is here: issuesFixed/jira-report.hmtl .
+  Adding the same identical Feature Structure to the indices no longer adds duplicate entries. Jira issue: UIMA-3399
+  The old behavior may be restored, if needed for backward compatibility; see the UIMA Reference documentation Chapter 10. 
+  
+  There is a new kind of check that may be optionally enabled in UIMA (by defining the JVM argument
+  "-Duima.check_invalid_fs_updates") that checks all modifications to features to see if that feature is
+  being used as a key in a Sort or Set index, and the Feature Structure being modified is currently in
+  one or more indices (Jira issue UIMA-4059). Doing such a modification causes the index to become corrupt.  (The correct way
+  to do an update in this case is to first remove the Feature Structure from the indices, do the modification,
+  and then add it back to the indices.)
+  
+  There are many bug fixes.  Some highlights: 
+    - making the JCasGen Eclipse plugin work with more varieties of specifications for class paths. Jira issues: UIMA-4080/4081
+    - moveTo(a_Feature_Structure) sometimes moving to the beginning.  Jira issue: UIMA-4094
+    - deserialization of deltaCAS when modifying existing Feature Structures not properly reindexing them. Jira issue: UIMA-4100
+    
+  The complete list of fixes is here: issuesFixed/jira-report.hmtl 
+  
+  
+Backward Compatibility Accommodations
+------------------------------------  
+  
+  Some updates change UIMA's behavior.  For example, sometimes an error check
+  will be enhanced, and something that previously was incorrect, but wasn't checked,
+  will now report an exception.
   
-  Java version 6 is required (since UIMA version 2.6.0).    
+  To enable users to gradually fix these, there are some global JVM properties
+  for UIMA that can restore earlier behaviors. 
+  The UIMA References documentation (see http://uima.apache.org/documentation.html)
+  has a table of these in Chapter 10.
     
+     
 Supported Platforms
 --------------------
 
-Apache UIMA requires Java version 6 or later; it has been tested with Sun/Oracle Java SDK 6, 7, and 8, 
-and IBM Java 6, 7 and 8.
-Running the Eclipse plugin tooling for UIMA requires you start Eclipse using a Java 6 or later, as well.
+Apache UIMA requires Java version 7 or later; it has been tested with Sun/Oracle Java SDK 7, and 8, 
+and IBM Java 7 and 8.
+Running the Eclipse plugin tooling for UIMA requires you start Eclipse using a Java 7 or later, as well.
 The supported platforms are: Windows, Linux, and Mac OS X.  
-Other platforms and Java (6+) implementations should work, but have not been significantly tested.
+Other platforms and Java (7+) implementations should work, but have not been significantly tested.
 
 Many of the scripts in the /bin directory invoke Java. They use the value of the environment variable, JAVA_HOME, 
 to locate the Java to use; if it is not set, they invoke "java" expecting to find an appropriate Java in your PATH. 

Modified: uima/uimaj/trunk/RELEASE_NOTES.html
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/RELEASE_NOTES.html?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/RELEASE_NOTES.html (original)
+++ uima/uimaj/trunk/RELEASE_NOTES.html Thu Nov 20 22:18:14 2014
@@ -81,10 +81,34 @@
 
 <h2><a name="major.changes">Major Changes in this Release</a></h2>
 <p>
+The meaning of "bag" and "sorted" index has been made consistent with how these are handled
+when sending CASes to remote services.  This means that adding the same identical FS to the
+indexes, multiple times, will not add duplicate index entries.  And, removing a FS from an index
+is guaranteed that that particular FS will no longer be in any index.  (Before, if you had 
+added a particular FS to a sorted or bag index, multiple times, the remove behavior would
+remove just one of the instances).  Deserialization of CASes sent to remote services has never 
+added Feature Structures to the index multiple times, so this change makes that behavior 
+consistent. For more details, see <a target="_blank" href="https://issues.apache.org/jira/browse/UIMA-3399">
+https://issues.apache.org/jira/browse/UIMA-3399</a>.
+</p>
+
+<p>Because some users may prefer the previous behavior that permitted duplicates of identical Feature Structures in
+the sorted and bga indexes. this change can be disabled, by running the JVN with the defined property
+"uima.allow_duplicate_add_to_indices".
+
+<p>
  JSON serialization support is added for Type System Descriptions, and for CASs.
   Several formats for JSON CAS serialization are provided, please see the chapter in the
   UIMA reference documentation for details.
 </p>
+
+<p>Java 7 is now the minimum level of Java required.</p>
+
+<p>The fixed bugs include fixes to the UIMA iterator moveTo(FeatureStructure) methods which 
+ended up doing a moveToFirst() if the Feature Structure was beyond the last element in the index;
+the fixed code now marks the position of the iterator as invalid.</p>
+
+<p>See the README file for information on special backwards compatible flags.
   
 <h2><a name="get.involved">How to Get Involved</a></h2>
 <p>

Modified: uima/uimaj/trunk/aggregate-uimaj-docbooks/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/aggregate-uimaj-docbooks/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/aggregate-uimaj-docbooks/pom.xml (original)
+++ uima/uimaj/trunk/aggregate-uimaj-docbooks/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
 

Modified: uima/uimaj/trunk/aggregate-uimaj-eclipse-plugins/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/aggregate-uimaj-eclipse-plugins/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/aggregate-uimaj-eclipse-plugins/pom.xml (original)
+++ uima/uimaj/trunk/aggregate-uimaj-eclipse-plugins/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
 

Modified: uima/uimaj/trunk/aggregate-uimaj/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/aggregate-uimaj/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/aggregate-uimaj/pom.xml (original)
+++ uima/uimaj/trunk/aggregate-uimaj/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
 

Modified: uima/uimaj/trunk/jVinci/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/jVinci/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/jVinci/pom.xml (original)
+++ uima/uimaj/trunk/jVinci/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version> 
+    <version>2.7.0-SNAPSHOT</version> 
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
 

Modified: uima/uimaj/trunk/jcasgen-maven-plugin/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/jcasgen-maven-plugin/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/jcasgen-maven-plugin/pom.xml (original)
+++ uima/uimaj/trunk/jcasgen-maven-plugin/pom.xml Thu Nov 20 22:18:14 2014
@@ -30,7 +30,7 @@
 	<parent>
 		<groupId>org.apache.uima</groupId>
 		<artifactId>uimaj-parent</artifactId>
-		<version>2.6.1-SNAPSHOT</version>
+		<version>2.7.0-SNAPSHOT</version>
 		<relativePath>../uimaj-parent/pom.xml</relativePath>
 	</parent>
 	<dependencies>

Modified: uima/uimaj/trunk/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/pom.xml (original)
+++ uima/uimaj/trunk/pom.xml Thu Nov 20 22:18:14 2014
@@ -29,7 +29,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>uimaj-parent/pom.xml</relativePath>
   </parent>
 
@@ -61,7 +61,7 @@
 
   <properties>
     <uimaScmProject>${project.artifactId}</uimaScmProject>
-    <jiraVersion>2.6.1SDK</jiraVersion>   
+    <jiraVersion>2.7.0SDK</jiraVersion>   
     <assemblyFinalName>uimaj-${project.version}</assemblyFinalName> 
     <assemblyBinDescriptor>src/main/assembly/bin-without-jackson.xml</assemblyBinDescriptor> 
     <postNoticeText>${ibmNoticeText}</postNoticeText>    

Modified: uima/uimaj/trunk/uima-docbook-overview-and-setup/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uima-docbook-overview-and-setup/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uima-docbook-overview-and-setup/pom.xml (original)
+++ uima/uimaj/trunk/uima-docbook-overview-and-setup/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uima-docbook-references/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uima-docbook-references/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uima-docbook-references/pom.xml (original)
+++ uima/uimaj/trunk/uima-docbook-references/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uima-docbook-tools/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uima-docbook-tools/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uima-docbook-tools/pom.xml (original)
+++ uima/uimaj/trunk/uima-docbook-tools/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uima-docbook-tutorials-and-users-guides/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uima-docbook-tutorials-and-users-guides/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uima-docbook-tutorials-and-users-guides/pom.xml (original)
+++ uima/uimaj/trunk/uima-docbook-tutorials-and-users-guides/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uimaj-adapter-soap/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-adapter-soap/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-adapter-soap/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-adapter-soap/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
 

Modified: uima/uimaj/trunk/uimaj-adapter-vinci/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-adapter-vinci/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-adapter-vinci/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-adapter-vinci/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uimaj-bootstrap/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-bootstrap/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-bootstrap/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-bootstrap/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
 

Modified: uima/uimaj/trunk/uimaj-component-test-util/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-component-test-util/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-component-test-util/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-component-test-util/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uimaj-core/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-core/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-core/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-core/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uimaj-cpe/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-cpe/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-cpe/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-cpe/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uimaj-document-annotation/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-document-annotation/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-document-annotation/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-document-annotation/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uimaj-eclipse-feature-runtime/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-eclipse-feature-runtime/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-eclipse-feature-runtime/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-eclipse-feature-runtime/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
     

Modified: uima/uimaj/trunk/uimaj-eclipse-feature-tools/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-eclipse-feature-tools/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-eclipse-feature-tools/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-eclipse-feature-tools/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uimaj-eclipse-update-site/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-eclipse-update-site/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-eclipse-update-site/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-eclipse-update-site/pom.xml Thu Nov 20 22:18:14 2014
@@ -28,7 +28,7 @@
   </parent>
 
   <artifactId>uimaj-eclipse-update-site</artifactId>
-  <version>2.6.1-SNAPSHOT</version>
+  <version>2.7.0-SNAPSHOT</version>
   <packaging>pom</packaging>
 
   <name>Apache UIMA Eclipse: ${project.artifactId}</name>

Modified: uima/uimaj/trunk/uimaj-ep-cas-editor-ide/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-ep-cas-editor-ide/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-ep-cas-editor-ide/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-ep-cas-editor-ide/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uimaj-ep-cas-editor/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-ep-cas-editor/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-ep-cas-editor/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-ep-cas-editor/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uimaj-ep-configurator/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-ep-configurator/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-ep-configurator/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-ep-configurator/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
 

Modified: uima/uimaj/trunk/uimaj-ep-debug/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-ep-debug/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-ep-debug/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-ep-debug/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
 

Modified: uima/uimaj/trunk/uimaj-ep-jcasgen/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-ep-jcasgen/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-ep-jcasgen/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-ep-jcasgen/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uimaj-ep-launcher/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-ep-launcher/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-ep-launcher/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-ep-launcher/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
 

Modified: uima/uimaj/trunk/uimaj-ep-pear-packager/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-ep-pear-packager/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-ep-pear-packager/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-ep-pear-packager/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uimaj-ep-runtime/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-ep-runtime/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-ep-runtime/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-ep-runtime/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uimaj-examples/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-examples/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-examples/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-examples/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uimaj-json/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-json/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-json/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-json/pom.xml Thu Nov 20 22:18:14 2014
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   <artifactId>uimaj-json</artifactId>
@@ -78,8 +78,10 @@
 	              <configuration>
 	                <excludes>
 	                  <exclude>release.properties</exclude> <!-- generated file -->
-	                  <exclude>src/test/resources/CasSerialization/expected/*.txt</exclude>                  
-	                  <exclude>src/test/resources/CASTests/json/expected/*.json</exclude>              
+	                  <exclude>src/test/resources/CasSerialization/expected/json/*.txt</exclude>                  
+                    <exclude>src/test/resources/CasSerialization/expected/xmi/*.xml</exclude>                  
+	                  <exclude>src/test/resources/CASTests/json/expected/*.json</exclude>
+	                  <exclude>src/test/java/org/apache/uima/test/*.java</exclude>              
 	               </excludes>
 	              </configuration>
 	            </execution>

Modified: uima/uimaj/trunk/uimaj-parent/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-parent/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-parent/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-parent/pom.xml Thu Nov 20 22:18:14 2014
@@ -38,7 +38,7 @@
   <groupId>org.apache.uima</groupId>
   <artifactId>uimaj-parent</artifactId>
   <packaging>pom</packaging>
-  <version>2.6.1-SNAPSHOT</version>
+  <version>2.7.0-SNAPSHOT</version>
   <name>Apache UIMA Java SDK: ${project.artifactId}</name>
   <description>The common parent pom for the uimaj SDK</description>
   <url>${uimaWebsiteUrl}</url>

Modified: uima/uimaj/trunk/uimaj-test-util/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-test-util/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-test-util/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-test-util/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>
   

Modified: uima/uimaj/trunk/uimaj-tools/pom.xml
URL: http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-tools/pom.xml?rev=1640830&r1=1640829&r2=1640830&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-tools/pom.xml (original)
+++ uima/uimaj/trunk/uimaj-tools/pom.xml Thu Nov 20 22:18:14 2014
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.uima</groupId>
     <artifactId>uimaj-parent</artifactId>
-    <version>2.6.1-SNAPSHOT</version>
+    <version>2.7.0-SNAPSHOT</version>
     <relativePath>../uimaj-parent/pom.xml</relativePath>
   </parent>