You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by bh...@apache.org on 2012/07/12 20:01:57 UTC

svn commit: r1360833 - in /uima/uimacpp/trunk: README.4src RELEASE_NOTES.html

Author: bhavani
Date: Thu Jul 12 18:01:57 2012
New Revision: 1360833

URL: http://svn.apache.org/viewvc?rev=1360833&view=rev
Log:
UIMA-2314 updated README.4src and RELEASE_NOTES.html

Modified:
    uima/uimacpp/trunk/README.4src
    uima/uimacpp/trunk/RELEASE_NOTES.html

Modified: uima/uimacpp/trunk/README.4src
URL: http://svn.apache.org/viewvc/uima/uimacpp/trunk/README.4src?rev=1360833&r1=1360832&r2=1360833&view=diff
==============================================================================
--- uima/uimacpp/trunk/README.4src (original)
+++ uima/uimacpp/trunk/README.4src Thu Jul 12 18:01:57 2012
@@ -2,111 +2,128 @@
 See the LICENSE file for licensing information.
 
 --------------------------------
-Building the Apache UIMA C++ SDK
+The Apache UIMA C++ SDK
 --------------------------------
 
-The Apache UIMA C++ SDK has been built and tested in 32-bit mode
-on Linux systems with gcc version 3.4.6 and on Windows 
-using MSVC version 8. 64-bit builds have only been tested on Linux with gcc 4.3.2
-
-
-Setting up the build environment:
----------------------------------
-UIMACPP has dependencies on APR, ICU, Xerces-C and ActiveMQ-cpp
-libraries.  ActiveMQ-cpp has a runtime dependency on APR-Util and is required to build the
-binary distribution.
-
-On Windows dependent libraries must be specified with the
-environmental parameters APR_HOME, ICU_HOME, XERCES_HOME, APU_HOME and
-ACTIVEMQ_HOME.  For now, the ActiveMQ CPP and APR Util dependencies are optional; if not
-specified the UIMA-AS compatible service wrapper deployCppService will
-fail to build.  
-
-On Linux, the build will attempt to locate and use the system installation of the dependencies 
-- APR, ICU, XERCES, ACTIVEMQ. Provided these are consistent and only the UIMACPP library is required to be built, 
-there is no need for ennviroment variables to be set.
-
-To build with libraries at different location or to build the SDK, the environmental parameters 
-APR_HOME, ICU_HOME, XERCES_HOME, ACTIVEMQ_HOME and APU_HOME must be set.  
-
-The ActiveMQ CPP library is required for the Linux build.
-
-There is also a dependency on JNI headers from a Java JDK. The build
-looks for these headers in the directory specified by JAVA_INCLUDE.
-A typical setting for JAVA_INCLUDE on Linux or Windows would be
-$JAVA_HOME/include; on MacOSX jni.h and the other headers will be in a
-"Headers" directory.
+UIMACPP enables analytics written in C++, Python, Perl and Tcl to be
+easily integrated into the UIMA Java framework.
 
-On Unix, dependent headers are expected under $dependent_HOME/include and
-dependent libraries under $dependent_HOME/lib.
+The Apache UIMA C++ SDK is intended to be portable, packaged with
+user's annotator code, to make it easier to redistribute UIMACPP-based
+applications. This portability also allows different UIMACPP annotators,
+each using different versions of UIMACPP, to be integrated into a
+common UIMA pipeline on the same machine. For this reason the SDK includes
+UIMACPP as well as all prerequisite components. To build the SDK, all
+prerequites need to be built from source.
 
-The build of dependent libraries on Windows is less consistent.
-APR and APR-Util libraries are expected in %APR_HOME%\Release and %APU_HOME%\Release respectively. 
-ActiveMQ libraries are in %ACTIVEMQ_HOME%\vs2008-build\ReleaseDLL (or DebugDLL) and 
-ActiveMQ headers are expected in %ACTIVEMQ_HOME%\src\main.
+Alternatively UIMACPP can be built and installed on a machine along
+with all its prerequisites. In this case the prerequisites can be
+installed from binary distributions.
 
-On Windows, buildsdk command tries to copy the msvc*.dll runtime libs from
-C:\Program Files\Microsoft Visual Studio 8\VC\redist\x86\Microsoft.VC80.CRT
-To override the location for MSCV redistributable libraries, use MSVCRT_HOME.
+UIMACPP runtime prerequisites are APR, ICU, Xerces-C, ActiveMQ-cpp,
+APR-Util and a JDK for building the JNI interface. The SDK also
+requires doxygen for building the documentation.
 
+The Apache UIMA C++ SDK has been built and tested in 32-bit mode on
+Linux systems with gcc version 3.4.6 and on Windows using MSVC version 8.
+64-bit builds have only been tested on Linux with gcc 4.3.2 and 4.4.6.
 
-Building, testing and packaging on Linux:
------------------------------------------
-Set up your environment as described above. The following instructions
-assume you have unpacked the source into $HOME/uimacpp-2.X.Y.
-
-1 (Optional) Create the GNU automake scripts:
-  Note: This step is only done to regenerate the configure script and Makefile.in if 
-        the configure.ac or Makefile.am need to be modified.
-        The prebuild step requires relatively up-to-date GNU tools
-        GNU automake v1.9.6, autoconf v2.59 and libtool v1.5.24.
-  cd root of an SVN extract
-  ./autogen.sh
-
-2 Build the UIMA shared library and test routines:
-  cd root of the SVN extract  
-  To build with system installation of the dependencies, run:
-  ./configure
-  To build specifiying the path to the the location of the dependencies, 
-  first set the environement variables APR_HOME, ICU_HOME, XERCES_HOME, ACTIVEMQ_HOME to the respective install directories..
-        set JAVA_INCLUDE
-  run
-  ./configure --with-jdk=$JAVA_INCLUDE --with-apr=$APR_HOME --with-icu=$ICU_HOME --with-xerces=$XERCES_HOME --with-activemq=$ACTIVEMQ_HOME
-  make
-  DESTDIR=`pwd` make install  (or make install-strip to strip symbols to shrink the binaries)
 
-3 Build and run the test suite:
-  From root of the SVN extract  
+----------------
+Building on Unix
+----------------
+
+To build an SDK all prerequisite components, APR, ICU, Xerces-C,
+ActiveMQ-cpp and APR-Util must first be built from source and "make
+install" run. They need not be installed in system directories.
+
+Prerequisite installs from binary distributions can be used to build
+the UIMACPP components.  NOTE: UIMACPP problems have been reported
+with binary distributions of "Xerces-C with ICU".
+
+There is also a dependency on JNI headers from a Java JDK.
+
+
+Optional pre-build step
+-----------------------
+
+If changes are made to configure.ac or Makefile.am, then configure
+needs to be re-generated using:
+
+ ./autogen.sh
+
+autogen.sh requires GNU tools at or above the following versions:
+automake v1.9.6, autoconf v2.59 and libtool v1.5.24.
+
+
+Configure, build and test
+---------------------------
+
+Simply,
+  ./configure --with-jdk=location_of_jni.h [other options]
+  make
   make check
 
-4 Build the SDK tree:
-  Requires environmental parameters to be set for ICU_HOME, XERCES_HOME, APR_HOME, ACTIVEMQ_HOME, APU_HOME.
-  From root of the SVN extract  
-  make sdk ARGS=target_dir
-  This will build the documentation.
-  Note: The documentation build requires Doxygen 1.3.6 or lahter.
+The ./configure script will generate Makefiles customized to your
+system, including detecting available prerequisites that have been
+installed in standard locations.
 
-  To rebuild the SDK at the same target_dir, run
-  make sdk ARGS="target_dir clean"
+On Linux jni.h is usually in the JDK's "include" directory. On MacOSX
+jni.h is in the JDK's "Headers" dirctory. In some cases jni.h will
+#include files in other directories. For example, if jni.h includes
+jni_md.h located in a subdirectory named linux, use
+  --with-jdk="loc_of_jdk/include -Iloc_of_jdk/include/linux"
 
-5 Package the SDK tarball:
-  cd target_dir/..
-  tar czf uimacpp-2.X.Y-bin.tgz uimacpp
+Other options must be set for an SDK build, or if prerequisites are
+not installed in system directories.
 
-6 Build source tarball:
-  The source tar ball contains all the files needed to build on Windows and Linux  
-  To build a source tar ball with only files needed for a Linux build, run:
-  make dist
+For a full SDK build, all of the following are needed:
+  --with-apr=loc_of_apr_install --with-icu=loc_of_icu_install \
+  --with-xerces=loc_of_xerces_install --with-activemq=loc_of_amq_install \
+  --with-apr-util=loc_of_apr-util_install
 
+For a build of UIMACPP without UIMA-AS support, specify the option
+--without-activemq. The options --with-activemq and --with-apr-util
+can be left out.
 
-Building, testing and packaging on Windows:
--------------------------------------------
-Set up your environment as described above. The following instructions
-assume you have unpacked the source into \uimacpp-2.X.Y.
+For more help on how to customize the build configuration, run:
 
-The following commands assume you are running from a Microsoft Visual Studio 2005 Command Prompt.
+  ./configure --help
 
-If using MSVC Express Edition, replace the devenv command with vcexpress.  
+
+Install and Build SDK tree
+--------------------------
+
+  make install
+  make sdk TARGETDIR=loc_of_sdk_tree [clean]
+
+By default the install step will put UIMACPP components in
+/usr/local/uimacpp. To install them elsewhere, add the following
+option to configure:
+  --prefix=install_target_loc
+
+The SDK tree will be created in loc_of_sdk_tree/uimacpp. Package by:
+
+  cd loc_of_sdk_tree
+  tar czf uimacpp-2.X.Y-bin.tgz uimacpp
+
+A source tarball can be generated by:
+  make dist
+
+
+-------------------
+Building on Windows
+-------------------
+
+To build an SDK all prerequisite components, APR, ICU, Xerces-C,
+ActiveMQ-cpp and APR-Util must first be built on the machine, and a
+JDK installed. The location of the dependencies must be set in
+environment variables APR_HOME, ICU_HOME, XERCES_HOME, ACTIVEMQ_HOME,
+APU_HOME and JAVA_INCLUDE.
+
+The following commands assume you are running from a Microsoft Visual
+Studio 2005 Command Prompt. If using MSVC Express Edition, replace the
+devenv command with vcexpress.
 
 1 Build the UIMA C++ framework in both release and debug:
   cd \uimacpp-2.X.Y\src
@@ -126,8 +143,8 @@ If using MSVC Express Edition, replace t
 4 Build the SDK tree:
   set MSVCRT_HOME to the directory with the msvc*.dll files required.
   set ACTIVEMQ_HOME and APU_HOME if building and distributing the ActiveMQ CPP service wrapper, deployCppService.
-  cd \uimacpp-2.X.Y
-  buildsdk target_dir
+
+  buildsdk "target_dir [clean]"
 
 5 Package the SDK zipfile by creating a compressed folder of 
   target_dir\uimacpp into uimacpp-2.X.Y-bin.zip
@@ -153,9 +170,10 @@ A fix is to patch dso/unix/dso.c as foll
 
 Packaging UIMA C++ annotators:
 
-On Mac OSX, the install names are embedded in the binaries.  Run the following steps
-manually post build to neutralize the embedded name in the UIMA C++ binary and to change
-the dependency path in the annotator:
+On Mac OSX, the install names are embedded in the binaries.  Run the
+following steps manually post build to neutralize the embedded name in
+the UIMA C++ binary and to change the dependency path in the
+annotator:
  
 1) changing the install name in libuima, to neutralize it:
 
@@ -167,8 +185,8 @@ install_name_tool -change "/install/lib/
 "/absolute_path_to_uimacpp_home/install/lib/libuima.dylib" MyAnnotator.dylib
 
 
-Building the dependencies: APR, ICU, Xersec-c and Activemq-cpp
---------------------------------------------------------------
+Building the dependencies: APR, APR-Util, ICU, Xerses-c and Activemq-cpp
+------------------------------------------------------------------------
 
 Download and build information for these libraries are at:
   APR      - http://apr.apache.org/
@@ -177,24 +195,37 @@ Download and build information for these
   XERCES   - http://xml.apache.org/xerces-c/
   ACTIVEMQ - http://activemq.apache.org/cms/download.html
 
-ACTIVEMQ CPP library version 3.2 or higher is required to support the ActiveMQ failover protocol
-and to support multi-byte payload data.
-ACTIVEMQ CPP 3.2 and higher has a dependency on APR at version 1.3.8 or higher and APR-Util 1.3.8.
-
-For UNIX users that cannot or do not want to install these as
-system root, specify DESTDIR for the install step. For example,
-after building APR, install using:
+ACTIVEMQ CPP library version 3.2 or higher is required to support
+the ActiveMQ failover protocol and to support multi-byte payload data.
+ACTIVEMQ CPP 3.2 and higher has a dependency on APR at version 1.3.8
+or higher and APR-Util 1.3.8.
+
 
-  DESTDIR=`pwd` make install
+Building Dependencies on Unix/MacOSX
+------------------------------------
+
+The directions for these components is straightforward. The UIMACPP
+build expects to find headers in install_loc/include and libraries
+in install_loc/lib.
 
 
 Building Dependencies on Windows:
 --------------------------------
 
-ActiveMQ-CPP
-The UIMA C++ MSVC projects are Microsoft Visual Studio 8 (2005) projects.
-The ActiveMQ CPP source distribution comes with MSVC 8 (2008) project.  These
-can be down converted to MSVC 2005 by following these step reproduced from
+The build of dependent libraries on Windows is less consistent.
+APR and APR-Util libraries are expected in %APR_HOME%\Release and
+%APU_HOME%\Release respectively.  ActiveMQ libraries are in
+%ACTIVEMQ_HOME%\vs2008-build\ReleaseDLL (or DebugDLL) and ActiveMQ
+headers are expected in %ACTIVEMQ_HOME%\src\main.
+
+On Windows, buildsdk command tries to copy the msvc*.dll runtime libs from
+C:\Program Files\Microsoft Visual Studio8\VC\redist\x86\Microsoft.VC80.CRT 
+To override the location for MSCV redistributable libraries, use MSVCRT_HOME.
+
+ActiveMQ-CPP - The UIMA C++ MSVC projects are Microsoft Visual Studio
+8 (2005) projects.  The ActiveMQ CPP source distribution comes with
+MSVC 8 (2008) project.  These can be down converted to MSVC 2005 by
+following these step reproduced from
 http://stackoverflow.com/questions/609419/how-do-i-downgrade-a-c-visual-studio-2008-project-to-2005
 
 Put the following sed script in a file called downgrade_vc9_to_vc8.sed :
@@ -212,28 +243,34 @@ On Windows, the only activemq-cpp target
       devenv vs2008-build/activemq-cpp2005.vcproj /build DebugDLL
  
 APR and APR-Util
-Also, the APR and APR-Util libraries can be built by launching libapr.dsp or by following the
-instructions in Makefile.win.
+Also, the APR and APR-Util libraries can be built by launching
+libapr.dsp or by following the instructions in Makefile.win.
 
 XERCES and ICU
 Binary distributions are available for Xerces and ICU.
 
+
 UIMA C++ Release Compatibility
 -------------------------------
 
-There  a two distinct features of UIMA C++ to consider when dealing with release compatibility:
+There a two distinct features of UIMA C++ to consider when dealing
+with release compatibility:
 
-- The framework dynamically loads annotators which are user code. The annotators make calls to UIMA C++ APIs 
-   and are built with some version of the SDK. A possible scenario is for an application to run annotators that 
-   were built with different  releases of UIMA C++ SDK.
--  The SDK depends on ICU, XERCES, APR and ACTIVEMQ-CPP and a release is built with a particular version of these.  
-   Binary compatibility therefore depends on the compatibility of these underlying libraries.  In particular,  
-   ICU and XERCES encode the major and minor release numbers in the APIs which restricts binary compatibility across 
-   releases of these libraries.   An application running UIMA C++ is restricted to running one version of the ICU library 
-   in a process and all annotators and underlying libraries must use the same ICU version.
+- The framework dynamically loads annotators which are user code. The
+   annotators make calls to UIMA C++ APIs and are built with some
+   version of the SDK. A possible scenario is for an application to
+   run annotators that were built with different releases of UIMA C++
+   SDK.
+- The SDK depends on ICU, XERCES, APR and ACTIVEMQ-CPP and a release
+   is built with a particular version of these.  Binary compatibility
+   therefore also depends on the compatibility of these underlying
+   libraries.  In particular, ICU and XERCES encode the major and
+   minor release numbers in the APIs which restricts binary
+   compatibility across releases of these libraries.  An application
+   running UIMA C++ is restricted to running one version of the ICU
+   library in a process and all annotators and underlying libraries
+   must use the same ICU version.
    
-We do not enforce binary compatility when doing a release.
+In general, different UIMACPP releases are not binary compatible.
+
 
-Installing UIMACPP SDK as a system-wide shared library is discouraged since we do not
-have support for parallel versions.  The include directory does not have version number and
-there cannot be multiple versions of executable runAECpp and deployCppService.
\ No newline at end of file

Modified: uima/uimacpp/trunk/RELEASE_NOTES.html
URL: http://svn.apache.org/viewvc/uima/uimacpp/trunk/RELEASE_NOTES.html?rev=1360833&r1=1360832&r2=1360833&view=diff
==============================================================================
--- uima/uimacpp/trunk/RELEASE_NOTES.html (original)
+++ uima/uimacpp/trunk/RELEASE_NOTES.html Thu Jul 12 18:01:57 2012
@@ -22,17 +22,17 @@ xmlns="http://www.w3.org/TR/REC-html40">
  <o:DocumentProperties>
   <o:Author>bsiyer</o:Author>
   <o:LastAuthor>bsiyer</o:LastAuthor>
-  <o:Revision>45</o:Revision>
-  <o:TotalTime>182</o:TotalTime>
+  <o:Revision>46</o:Revision>
+  <o:TotalTime>184</o:TotalTime>
   <o:Created>2012-01-03T16:09:00Z</o:Created>
-  <o:LastSaved>2012-07-05T19:12:00Z</o:LastSaved>
+  <o:LastSaved>2012-07-12T17:59:00Z</o:LastSaved>
   <o:Pages>1</o:Pages>
-  <o:Words>1411</o:Words>
-  <o:Characters>8048</o:Characters>
+  <o:Words>1426</o:Words>
+  <o:Characters>8131</o:Characters>
   <o:Company>IBM</o:Company>
   <o:Lines>67</o:Lines>
-  <o:Paragraphs>18</o:Paragraphs>
-  <o:CharactersWithSpaces>9441</o:CharactersWithSpaces>
+  <o:Paragraphs>19</o:Paragraphs>
+  <o:CharactersWithSpaces>9538</o:CharactersWithSpaces>
   <o:Version>11.9999</o:Version>
  </o:DocumentProperties>
 </xml><![endif]--><!--[if gte mso 9]><xml>
@@ -469,7 +469,7 @@ ul
 	mso-bidi-language:#0400;}
 </style>
 <![endif]--><!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="9218"/>
+ <o:shapedefaults v:ext="edit" spidmax="10242"/>
 </xml><![endif]--><!--[if gte mso 9]><xml>
  <o:shapelayout v:ext="edit">
   <o:idmap v:ext="edit" data="1"/>
@@ -480,10 +480,10 @@ ul
 
 <div class=Section1>
 
-<h1><a name="_Toc313524508"></a><a name="_Toc313524308"></a><a
-name="_Toc313367453"></a><a name="_Toc313367710"></a><a name="_Toc313367811"><span
-style='mso-bookmark:_Toc313367710'><span style='mso-bookmark:_Toc313367453'><span
-style='mso-bookmark:_Toc313524308'><span style='mso-bookmark:_Toc313524508'>Apache
+<h1><a name="_Toc313367811"></a><a name="_Toc313367710"></a><a
+name="_Toc313367453"></a><a name="_Toc313524308"></a><a name="_Toc313524508"><span
+style='mso-bookmark:_Toc313524308'><span style='mso-bookmark:_Toc313367453'><span
+style='mso-bookmark:_Toc313367710'><span style='mso-bookmark:_Toc313367811'>Apache
 UIMA (Unstructured Information Management Architecture) for C++ v2.4.0 Release
 Notes</span></span></span></span></a></h1>
 
@@ -600,10 +600,10 @@ style='mso-no-proof:yes'><o:p></o:p></sp
 <h1><!--[if supportFields]><span style='font-size:12.0pt;mso-font-kerning:0pt;
 font-weight:normal'><span style='mso-element:field-end'></span></span><![endif]--><o:p>&nbsp;</o:p></h1>
 
-<h2><a name="_Toc313524509"></a><a name="_Toc313524310"></a><a
-name=what.is.uima></a><a name="_Toc313367454"></a><a name="_Toc313367711"><span
-style='mso-bookmark:_Toc313367454'><span style='mso-bookmark:"what\.is\.uima"'><span
-style='mso-bookmark:_Toc313524310'><span style='mso-bookmark:_Toc313524509'>1.
+<h2><a name="_Toc313367711"></a><a name="_Toc313367454"></a><a
+name=what.is.uima></a><a name="_Toc313524310"></a><a name="_Toc313524509"><span
+style='mso-bookmark:_Toc313524310'><span style='mso-bookmark:"what\.is\.uima"'><span
+style='mso-bookmark:_Toc313367454'><span style='mso-bookmark:_Toc313367711'>1.
 What is UIMA?</span></span></span></span></a></h2>
 
 <p>Unstructured Information Management applications are software systems that
@@ -636,10 +636,10 @@ text, audio and video. It comprises an S
 running analytic components written in Java and C++, with some support for
 Perl, Python and TCL. </p>
 
-<h2><a name="_Toc313524510"></a><a name="_Toc313524311"></a><a
-name=major.changes></a><a name="_Toc313367455"></a><a name="_Toc313367712"><span
-style='mso-bookmark:_Toc313367455'><span style='mso-bookmark:"major\.changes"'><span
-style='mso-bookmark:_Toc313524311'><span style='mso-bookmark:_Toc313524510'>2.
+<h2><a name="_Toc313367712"></a><a name="_Toc313367455"></a><a
+name=major.changes></a><a name="_Toc313524311"></a><a name="_Toc313524510"><span
+style='mso-bookmark:_Toc313524311'><span style='mso-bookmark:"major\.changes"'><span
+style='mso-bookmark:_Toc313367455'><span style='mso-bookmark:_Toc313367712'>2.
 Major Changes in this Release</span></span></span></span></a></h2>
 
 <p>This section describes what has changed between version 2.3.0 and version
@@ -703,12 +703,12 @@ tutorial and other interlock with Java?
      sofa mapping in a UIMC C++ aggregate AE.</li>
 </ul>
 
-<h2><a name="_Toc313524511"></a><a name="_Toc313524312"></a><a
-name="_Toc313367459"></a><a name="_Toc313367713"></a><a name=get.involved><span
-style='mso-bookmark:_Toc313367713'><span style='mso-bookmark:_Toc313367459'><span
-style='mso-bookmark:_Toc313524312'><span style='mso-bookmark:_Toc313524511'>3. </span></span></span></span></a><span
-style='mso-bookmark:_Toc313367713'><span style='mso-bookmark:_Toc313367459'><span
-style='mso-bookmark:_Toc313524312'><span style='mso-bookmark:_Toc313524511'>List
+<h2><a name="_Toc313367713"></a><a name="_Toc313367459"></a><a
+name="_Toc313524312"></a><a name="_Toc313524511"></a><a name=get.involved><span
+style='mso-bookmark:_Toc313524511'><span style='mso-bookmark:_Toc313524312'><span
+style='mso-bookmark:_Toc313367459'><span style='mso-bookmark:_Toc313367713'>3. </span></span></span></span></a><span
+style='mso-bookmark:_Toc313524511'><span style='mso-bookmark:_Toc313524312'><span
+style='mso-bookmark:_Toc313367459'><span style='mso-bookmark:_Toc313367713'>List
 of Issues Fixed in this Release</span></span></span></span></h2>
 
 <table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width=516
@@ -717,533 +717,549 @@ of Issues Fixed in this Release</span></
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:12.75pt'>
   <p class=MsoNormal align=center style='text-align:center'><a
-  name="_Toc313367460"></a><a name="_Toc313367714"><span style='mso-bookmark:
-  _Toc313367460'><b><span style='font-size:10.0pt;font-family:Arial;color:black'>Issue
+  name="_Toc313367714"></a><a name="_Toc313367460"><span style='mso-bookmark:
+  _Toc313367714'><b><span style='font-size:10.0pt;font-family:Arial;color:black'>Issue
   Key<o:p></o:p></span></b></span></a></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:12.75pt'>
   <p class=MsoNormal align=center style='text-align:center'><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><b><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><b><span
   style='font-size:10.0pt;font-family:Arial;color:black'>Summary<o:p></o:p></span></b></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:1;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2333"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-2333</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;mso-bidi-font-size:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;mso-bidi-font-size:
   12.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'>Build
   one source distribution which includes Windows and Linux files<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:2;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2328"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-2328</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;mso-bidi-font-size:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;mso-bidi-font-size:
   12.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'>Cleanup
   the Linux source distribution<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:3;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2312"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-2312</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;font-family:Arial;color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;mso-bidi-font-size:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;mso-bidi-font-size:
   12.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'>Migrate
   UIMA C++ service wrapper to ACTIVEMQ CPP 3.4.1<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:4;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2307"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-2307</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;font-family:Arial;color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;mso-bidi-font-size:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;mso-bidi-font-size:
   12.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'>BasicArrayFS
   has two unimplemented Functions: copyToArray, copyFromArray.<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:5;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2053"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-2053</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;font-family:Arial;color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;font-family:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;font-family:
   Arial;color:black'>Changes to standardize UIMA C++ build and packaging on
   Linux<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:6;height:38.25pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:38.25pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-1964"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-1964</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;font-family:Arial;color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:38.25pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;font-family:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;font-family:
   Arial;color:black'>UIMA C++ service wrapper is not correctly shutting down
   when Java controller terminates<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:7;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-1941"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-1941</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;font-family:Arial;color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;font-family:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;font-family:
   Arial;color:black'>UIMA CPP aggregate AE incorrect handling of sofa mapping<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:8;height:38.25pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:38.25pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-1940"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-1940</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;font-family:Arial;color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:38.25pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;font-family:
-  Arial;color:black'>TypeSystemDescription element missing when Aggregate AE
-  metadata is serialized to XML<o:p></o:p></span></span></span></p>
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;font-family:
+  Arial;color:black'>TypeSystemDescription element missing when Aggregate AE metadata
+  is serialized to XML<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:9;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-1925"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-1925</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;font-family:Arial;color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;font-family:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;font-family:
   Arial;color:black'>Enable failover protocol support in UIMA C++ service
   wrapper<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:10;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-1913"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-1913</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;font-family:Arial;color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;font-family:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;font-family:
   Arial;color:black'>Replace usage of ActiveMQ CPP utitlity APIs with APR
   functions<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:11;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-1912"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-1912</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;font-family:Arial;color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;font-family:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;font-family:
   Arial;color:black'>Changes for GCC 4.3+ compatibilty and header file
   conventions<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:12;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-1886"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-1886</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;font-family:Arial;color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;font-family:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;font-family:
   Arial;color:black'>XMI serialization incorrectly handling string feature set
   to an empty string<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:13;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2328"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-2328</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;font-family:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;font-family:
   Arial;color:black'>Cleanup Linux source distribution<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:14;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2333"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-2333</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;font-family:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;font-family:
   Arial;color:black'>Build one source distribution that includes Linux and
   Windows files.<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:15;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2348"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-2348</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;mso-bidi-font-size:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;mso-bidi-font-size:
   12.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'>Augment
   UIMACpp binary lic/notice with appropriate items from other embedded
-  binaries.</span></span></span><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;font-family:
+  binaries.</span></span></span><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;font-family:
   Arial;color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:16;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2352"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-2352</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <h2><span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  <h2><span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black;font-weight:normal'>Build
   script for uimacpp sdk on Windows does not correctly copy scriptators docs
   and xerces libs.<o:p></o:p></span></span></span></h2>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:17;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2356"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;font-family:Arial;color:black'>UIMA-2356</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <h2><span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  <h2><span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
-  mso-bidi-font-family:"Times New Roman";color:black;font-weight:normal'>Fix warnings
-  generated when creating the UIMA C++ doxygen docs.<o:p></o:p></span></span></span></h2>
+  mso-bidi-font-family:"Times New Roman";color:black;font-weight:normal'>Fix
+  warnings generated when creating the UIMA C++ doxygen docs.<o:p></o:p></span></span></span></h2>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:18;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2361"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'>UIMA-2361</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;mso-bidi-font-size:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;mso-bidi-font-size:
   12.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'>UIMA
   C++ fails to build with gcc 4.5.2.<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:19;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2362"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'>UIMA-2362</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;mso-bidi-font-size:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;mso-bidi-font-size:
   12.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'>Add
   APR 1.4.x to list of acceptable version to build UIMA C++<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:20;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2363"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'>UIMA-2363</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;mso-bidi-font-size:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;mso-bidi-font-size:
   12.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'>Add
   APR-Util libraries to the UIMA C++ binary package<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
  <tr style='mso-yfti-irow:21;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2365"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><u><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><u><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'>UIMA-2365</span></u></span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
   style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
   mso-bidi-font-family:"Times New Roman";color:black'><o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'><span style='font-size:10.0pt;mso-bidi-font-size:
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;mso-bidi-font-size:
   12.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'>UIMACPP
   build fails on Mac OS X stricmp unavailable replace with strcasecmp in
   deployCppService.hpp<o:p></o:p></span></span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
- <tr style='mso-yfti-irow:22;mso-yfti-lastrow:yes;height:25.5pt'>
+ <tr style='mso-yfti-irow:22;height:25.5pt'>
   <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'>UIMA-2425</span></span></p>
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'>UIMA-2425</span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
   <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
   height:25.5pt'>
-  <p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-  style='mso-bookmark:_Toc313367460'></span></span><a
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'></span></span><a
   href="https://issues.apache.org/jira/browse/UIMA-2425"><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'>Xerces
-  exception messages not being properly converted to native code-page.</span></span></a><span
-  style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
-  mso-bidi-font-family:"Times New Roman";color:black'><o:p></o:p></span></span></span></p>
+  style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
+  style='color:black'>Xerces exception messages not being properly converted to
+  native code-page.</span></span></span></a><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'><span style='font-size:10.0pt;mso-bidi-font-size:
+  12.0pt;font-family:Arial;mso-bidi-font-family:"Times New Roman";color:black'><o:p></o:p></span></span></span></p>
+  </td>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
+ </tr>
+ <tr style='mso-yfti-irow:23;mso-yfti-lastrow:yes;height:25.5pt'>
+  <td width=132 valign=top style='width:99.25pt;padding:0in 5.4pt 0in 5.4pt;
+  height:25.5pt'>
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'>UIMA-2433</span></span></p>
   </td>
-  <span style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'></span></span>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
+  <td width=384 valign=top style='width:4.0in;padding:0in 5.4pt 0in 5.4pt;
+  height:25.5pt'>
+  <p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+  style='mso-bookmark:_Toc313367714'>Scriptator makefiles modified to work with
+  different newer versons of Python and SWIG.</span></span></p>
+  </td>
+  <span style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'></span></span>
  </tr>
 </table>
 
-<p class=MsoNormal><span style='mso-bookmark:_Toc313367714'><span
-style='mso-bookmark:_Toc313367460'><o:p>&nbsp;</o:p></span></span></p>
+<p class=MsoNormal><span style='mso-bookmark:_Toc313367460'><span
+style='mso-bookmark:_Toc313367714'><o:p>&nbsp;</o:p></span></span></p>
 
 <h2 style='margin-left:.25in;text-indent:-.25in;mso-list:l2 level1 lfo4;
-tab-stops:list .25in'><span style='mso-bookmark:_Toc313367714'><span
-style='mso-bookmark:_Toc313367460'><a name="_Toc313524512"></a><a
-name="_Toc313524313"><span style='mso-bookmark:_Toc313524512'><![if !supportLists]><span
+tab-stops:list .25in'><span style='mso-bookmark:_Toc313367460'><span
+style='mso-bookmark:_Toc313367714'><a name="_Toc313524313"></a><a
+name="_Toc313524512"><span style='mso-bookmark:_Toc313524313'><![if !supportLists]><span
 style='mso-list:Ignore'>4.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
 </span></span><![endif]>Release Compatibility</span></a> </span></span></h2>
 
 <p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'>There
-are two distinct features of UIMA C++ to consider when dealing with release compatibility:</span></span></p>
+style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'>There
+are two distinct features of UIMA C++ to consider when dealing with release
+compatibility:</span></span></p>
 
 <p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><o:p>&nbsp;</o:p></span></span></p>
+style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><o:p>&nbsp;</o:p></span></span></p>
 
 <ul style='margin-top:0in' type=disc>
  <li class=MsoNormal style='mso-list:l4 level1 lfo5;tab-stops:list .5in;
      mso-layout-grid-align:none;text-autospace:none'><span style='mso-bookmark:
-     _Toc313367714'><span style='mso-bookmark:_Toc313367460'>The framework
+     _Toc313367460'><span style='mso-bookmark:_Toc313367714'>The framework
      dynamically loads annotators which are user code. The annotators make
      calls to UIMA C++ APIs </span></span></li>
 </ul>
 
 <p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
 style='mso-spacerun:yes'>&nbsp;&nbsp; </span><span style='mso-tab-count:1'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>and
 are built with some version of the SDK. A possible scenario is for an
 application to run annotators that </span></span></p>
 
 <p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
 style='mso-spacerun:yes'>&nbsp;&nbsp; </span><span style='mso-tab-count:1'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>were
 built with different<span style='mso-spacerun:yes'>&nbsp; </span>releases of
 UIMA C++ SDK.</span></span></p>
@@ -1251,74 +1267,74 @@ UIMA C++ SDK.</span></span></p>
 <ul style='margin-top:0in' type=disc>
  <li class=MsoNormal style='mso-list:l4 level1 lfo5;tab-stops:list .5in;
      mso-layout-grid-align:none;text-autospace:none'><span style='mso-bookmark:
-     _Toc313367714'><span style='mso-bookmark:_Toc313367460'>The SDK depends on
+     _Toc313367460'><span style='mso-bookmark:_Toc313367714'>The SDK depends on
      ICU, XERCES, APR and ACTIVEMQ-CPP and a UIMA C++ SDK release is built with
      a particular version of these.<span style='mso-spacerun:yes'>&nbsp;
      </span></span></span></li>
 </ul>
 
 <p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
 style='mso-spacerun:yes'>&nbsp;&nbsp; </span><span style='mso-tab-count:1'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Binary
-compatibility therefore depends on the compatibility of these underlying libraries.<span
-style='mso-spacerun:yes'>&nbsp; </span>In particular,<span
+compatibility therefore depends on the compatibility of these underlying
+libraries.<span style='mso-spacerun:yes'>&nbsp; </span>In particular,<span
 style='mso-spacerun:yes'>&nbsp; </span></span></span></p>
 
 <p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
 style='mso-spacerun:yes'>&nbsp;&nbsp; </span><span style='mso-tab-count:1'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>ICU
 and XERCES encode the major and minor release numbers in the APIs which
 restricts binary compatibility across </span></span></p>
 
 <p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
 style='mso-spacerun:yes'>&nbsp;&nbsp; </span><span style='mso-tab-count:1'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>releases
 of these libraries.<span style='mso-spacerun:yes'>&nbsp;&nbsp; </span></span></span></p>
 
 <ul style='margin-top:0in' type=disc>
  <li class=MsoNormal style='mso-list:l4 level1 lfo5;tab-stops:list .5in;
      mso-layout-grid-align:none;text-autospace:none'><span style='mso-bookmark:
-     _Toc313367714'><span style='mso-bookmark:_Toc313367460'>An application
+     _Toc313367460'><span style='mso-bookmark:_Toc313367714'>An application
      running UIMA C++ is restricted to running one version of the ICU library </span></span></li>
 </ul>
 
 <p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
 style='mso-spacerun:yes'>&nbsp;&nbsp; </span><span style='mso-tab-count:1'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>in
 a process and all annotators and underlying libraries must use the same ICU
 version.</span></span></p>
 
 <p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><span
+style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><span
 style='mso-spacerun:yes'>&nbsp;&nbsp; </span></span></span></p>
 
 <p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'>We
+style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'>We
 do not enforce binary compatibility when doing a release.<span
 style='mso-spacerun:yes'>&nbsp; </span>Migrating to a new version of UIMA C++
 may require rebuild of the annotators.</span></span></p>
 
 <p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'><o:p>&nbsp;</o:p></span></span></p>
+style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'><o:p>&nbsp;</o:p></span></span></p>
 
 <p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'>Installing
+style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'>Installing
 UIMACPP SDK as a system-wide shared library is discouraged since we do not</span></span></p>
 
 <p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'>have
+style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'>have
 support for parallel versions.<span style='mso-spacerun:yes'>&nbsp; </span>The
 include directory does not have version number and</span></span></p>
 
 <p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='mso-bookmark:_Toc313367714'><span style='mso-bookmark:_Toc313367460'>there
+style='mso-bookmark:_Toc313367460'><span style='mso-bookmark:_Toc313367714'>there
 cannot be multiple versions of executables runAECpp and deployCppService.</span></span></p>
 
 <h2 style='margin-left:.25in;text-indent:-.25in;mso-list:l2 level1 lfo4;
-tab-stops:list .25in'><span style='mso-bookmark:_Toc313367714'><span
-style='mso-bookmark:_Toc313367460'><a name="_Toc313524513"></a><a
-name="_Toc313524314"><span style='mso-bookmark:_Toc313524513'><![if !supportLists]><span
-style='mso-list:Ignore'>5.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
+tab-stops:list .25in'><span style='mso-bookmark:_Toc313367460'><span
+style='mso-bookmark:_Toc313367714'><a name="_Toc313524314"></a><a
+name="_Toc313524513"><span style='mso-bookmark:_Toc313524314'><![if !supportLists]><span
+style='mso-list:Ignore'>4.<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
 </span></span><![endif]>Known Issues</span></a></span></span></h2>
 
 <p class=MsoNormal><span style='mso-spacerun:yes'>&nbsp;</span>The following
@@ -1331,30 +1347,30 @@ are known open issues:</p>
      Mapping is not supported for C++ Aggregate AE called from Java. </li>
 </ul>
 
-<h2><a name="_Toc313524514"></a><a name="_Toc313524315"></a><a
-name="_Toc313367461"></a><a name="_Toc313367715"><span style='mso-bookmark:
-_Toc313367461'><span style='mso-bookmark:_Toc313524315'><span style='mso-bookmark:
-_Toc313524514'>6. How to Get Involved</span></span></span></a></h2>
+<h2><a name="_Toc313367715"></a><a name="_Toc313367461"></a><a
+name="_Toc313524315"></a><a name="_Toc313524514"><span style='mso-bookmark:
+_Toc313524315'><span style='mso-bookmark:_Toc313367461'><span style='mso-bookmark:
+_Toc313367715'>6. How to Get Involved</span></span></span></a></h2>
 
 <p>The Apache UIMA project really needs and appreciates any contributions,
 including documentation help, source code and feedback. If you are interested
 in contributing, please visit <a href="http://uima.apache.org/get-involved.html"><u><span
 style='color:blue'>http://uima.apache.org/get-involved.html</span></u></a>. </p>
 
-<h2><a name="_Toc313524515"></a><a name="_Toc313524316"></a><a
-name=report.issues></a><a name="_Toc313367462"></a><a name="_Toc313367716"><span
-style='mso-bookmark:_Toc313367462'><span style='mso-bookmark:"report\.issues"'><span
-style='mso-bookmark:_Toc313524316'><span style='mso-bookmark:_Toc313524515'>7.
+<h2><a name="_Toc313367716"></a><a name="_Toc313367462"></a><a
+name=report.issues></a><a name="_Toc313524316"></a><a name="_Toc313524515"><span
+style='mso-bookmark:_Toc313524316'><span style='mso-bookmark:"report\.issues"'><span
+style='mso-bookmark:_Toc313367462'><span style='mso-bookmark:_Toc313367716'>7.
 How to Report Issues</span></span></span></span></a></h2>
 
 <p>The Apache UIMA project uses JIRA for issue tracking. Please report any
 issues you find at <a href="http://issues.apache.org/jira/browse/uima"><u><span
 style='color:blue'>http://issues.apache.org/jira/browse/uima</span></u></a> </p>
 
-<h2><a name="_Toc313524516"></a><a name="_Toc313524317"></a><a name=more.info></a><a
-name="_Toc313367463"></a><a name="_Toc313367717"><span style='mso-bookmark:
-_Toc313367463'><span style='mso-bookmark:"more\.info"'><span style='mso-bookmark:
-_Toc313524317'><span style='mso-bookmark:_Toc313524516'>8. More Documentation
+<h2><a name="_Toc313367717"></a><a name="_Toc313367463"></a><a name=more.info></a><a
+name="_Toc313524317"></a><a name="_Toc313524516"><span style='mso-bookmark:
+_Toc313524317'><span style='mso-bookmark:"more\.info"'><span style='mso-bookmark:
+_Toc313367463'><span style='mso-bookmark:_Toc313367717'>8. More Documentation
 on Apache UIMA C++</span></span></span></span></a></h2>
 
 <p>Please see <a href="docs/overview_and_setup.html"><u><span style='color: