Author: schor
Date: Thu Oct 23 17:27:40 2014
New Revision: 1633891

URL: http://svn.apache.org/r1633891
Log: (empty)

Modified:
    uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.json.xml
    
uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/CasSerializerSupport.java
    
uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/FSIndexRepositoryImpl.java
    uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Annotation 
Viewer.launch
    uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA CAS Visual 
Debugger.launch
    uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA CPE 
GUI.launch
    uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Document 
Analyzer.launch
    uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA JCasGen 
Merge.launch
    uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA 
JCasGen.launch
    uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA PEAR 
Installer.launch
    uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Run 
AE.launch
    uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Run 
CPE.launch
    uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Start 
VNS.launch
    uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Start Vinci 
Service.launch

Modified: uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.json.xml
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.json.xml?rev=1633891&r1=1633890&r2=1633891&view=diff
==============================================================================
--- uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.json.xml (original)
+++ uima/uimaj/trunk/uima-docbook-references/src/docbook/ref.json.xml Thu Oct 
23 17:27:40 2014
@@ -268,7 +268,7 @@ jcs.setJsonContext(JsonContextFormat.omi
         
     
     <section id="ug.ref.json.cas.featurestructures.embedding">
-      <title>Embedding normally referenced values</title>
+      <title>Embedding referenced values</title>
       
       <para>Consider a FS which has a feature that refers to another FS.  This 
can be serialized in one of two ways:</para>
       <itemizedlist spacing="compact">

Modified: 
uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/CasSerializerSupport.java
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/CasSerializerSupport.java?rev=1633891&r1=1633890&r2=1633891&view=diff
==============================================================================
--- 
uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/CasSerializerSupport.java
 (original)
+++ 
uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/CasSerializerSupport.java
 Thu Oct 23 17:27:40 2014
@@ -252,7 +252,7 @@ public class CasSerializerSupport {
      * set of FSs that have multiple references
      * This is for JSON which is computing the multi-refs, not depending on 
the setting in a feature.
      */
-    public final IntHashSet multiRefFSs;
+    public final PositiveIntSet multiRefFSs;
     
     /* *********************************************
      * FSs that need to be serialized because they're 
@@ -366,7 +366,7 @@ public class CasSerializerSupport {
          throw exception;
       }
       isDelta = marker != null;
-      multiRefFSs = (trackMultiRefs) ? new IntHashSet() : null;
+      multiRefFSs = (trackMultiRefs) ? new PositiveIntSet() : null;
     }
         
     // TODO: internationalize

Modified: 
uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/FSIndexRepositoryImpl.java
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/FSIndexRepositoryImpl.java?rev=1633891&r1=1633890&r2=1633891&view=diff
==============================================================================
--- 
uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/FSIndexRepositoryImpl.java
 (original)
+++ 
uima/uimaj/trunk/uimaj-core/src/main/java/org/apache/uima/cas/impl/FSIndexRepositoryImpl.java
 Thu Oct 23 17:27:40 2014
@@ -47,9 +47,19 @@ import org.apache.uima.internal.util.Int
 import org.apache.uima.internal.util.IntPointerIterator;
 import org.apache.uima.internal.util.IntSet;
 import org.apache.uima.internal.util.IntVector;
+import org.apache.uima.internal.util.PositiveIntSet;
 
 public class FSIndexRepositoryImpl implements FSIndexRepositoryMgr, 
LowLevelIndexRepository {
 
+  /**
+   * The default size of an index.
+   */
+  public static final int DEFAULT_INDEX_SIZE = 100;
+
+  /**
+   * 
+   */
+  public static final String TRACK_FS_INDEXED = "uima.track_fs_indexed";
   // Implementation note: the use of equals() here is pretty hairy and
   // should probably be fixed. We rely on the fact that when two
   // FSIndexComparators are compared, the type of the comparators is
@@ -144,7 +154,7 @@ public class FSIndexRepositoryImpl imple
           allTypes.add(rootType);
         } else {
           // includes the original type as element 0
-          allTypes = getAllSubsumedTypes(rootType, 
FSIndexRepositoryImpl.this.typeSystem);
+          allTypes = getAllSubsumedTypes(rootType, 
FSIndexRepositoryImpl.this.sii.typeSystem);
         }
         final int len = allTypes.size();
         int typeCode, indexPos;
@@ -975,17 +985,30 @@ public class FSIndexRepositoryImpl imple
   // }
   //
   // }
+  
+  /*************************************************************
+   * Information about indexes that is shared across all views *
+   *************************************************************/
+  private static class SharedIndexInfo {
+    
+    private LinearTypeOrderBuilder defaultOrderBuilder = null;
 
-  /**
-   * The default size of an index.
-   */
-  public static final int DEFAULT_INDEX_SIZE = 100;
+    private LinearTypeOrder defaultTypeOrder = null;
+    
+    // A reference to the type system.
+    private final TypeSystemImpl typeSystem;
+    
+    private int cache_not_in_index; // a one item cache of a FS not in the 
index
+    
+    SharedIndexInfo(TypeSystemImpl typeSystem) {
+      this.typeSystem = typeSystem;
+    }
+  }
+  
+  /*****  I N S T A N C E   V A R I A B L E S  *****/
 
   // A reference to the CAS.
-  private CASImpl cas;
-
-  // A reference to the type system.
-  private TypeSystemImpl typeSystem;
+  private final CASImpl cas;
 
   // Is the index repository locked?
   private boolean locked = false;
@@ -1002,13 +1025,10 @@ public class FSIndexRepositoryImpl imple
   int[] detectIllegalIndexUpdates;
 
   // A map from names to IndexIteratorCachePairs. Different names may map to
-  // the same index.
+  // the same index.  
+  // The keys are the same across all views, but the values are different, per 
view
   private HashMap<String, IndexIteratorCachePair> name2indexMap;
 
-  private LinearTypeOrderBuilder defaultOrderBuilder = null;
-
-  private LinearTypeOrder defaultTypeOrder = null;
-
   private IntVector indexUpdates;
 
   private BitSet indexUpdateOperation;
@@ -1025,21 +1045,36 @@ public class FSIndexRepositoryImpl imple
   private IntVector usedIndexes;
 
   private boolean[] isUsed;
+  
+  private final SharedIndexInfo sii;
+  
+  // the overhead of this (if used) is anywhere from 1 bit up to 3 32-bit 
words per indexed item
+  // if the avg size of a fs on the heap is 8 (32 bit) words, and 
+  //    about 50 - 100 % of FSs are indexed, then the "typical" space used 
should be in the order of
+  //    2 bytes / indexed item, per view
+  // This mechanism is under the control of a Java system defined variable 
uima.track_fs_indexed
+  private final PositiveIntSet fsIndexed =
+      System.getProperty(TRACK_FS_INDEXED, "false").equals("false") ? 
+          null : 
+          new PositiveIntSet(); // set of FSs (addrs) that are in the index 
UIMA-4059
 
   @SuppressWarnings("unused")
   private FSIndexRepositoryImpl() {
     super();
+    cas = null;  // because it's final
+    sii = null;
   }
 
   /**
    * Constructor.
+   * Assumption: called with the base CAS view
    * 
    * @param cas
    */
   FSIndexRepositoryImpl(CASImpl cas) {
     super();
     this.cas = cas;
-    this.typeSystem = cas.getTypeSystemImpl();
+    this.sii = new SharedIndexInfo(cas.getTypeSystemImpl());
     this.name2indexMap = new HashMap<String, IndexIteratorCachePair>();
     this.indexUpdates = new IntVector();
     this.indexUpdateOperation = new BitSet();
@@ -1059,7 +1094,7 @@ public class FSIndexRepositoryImpl imple
   FSIndexRepositoryImpl(CASImpl cas, FSIndexRepositoryImpl baseIndexRepo) {
     super();
     this.cas = cas;
-    this.typeSystem = cas.getTypeSystemImpl();
+    this.sii = baseIndexRepo.sii;
     this.name2indexMap = new HashMap<String, IndexIteratorCachePair>();
     this.indexUpdates = new IntVector();
     this.indexUpdateOperation = new BitSet();
@@ -1078,8 +1113,6 @@ public class FSIndexRepositoryImpl imple
             iicp.index.getIndexingStrategy());
       }
     }
-    this.defaultOrderBuilder = baseIndexRepo.defaultOrderBuilder;
-    this.defaultTypeOrder = baseIndexRepo.defaultTypeOrder;
   }
 
   /**
@@ -1087,7 +1120,7 @@ public class FSIndexRepositoryImpl imple
    */
   @SuppressWarnings("unchecked")
   private void init() {
-    final TypeSystemImpl ts = this.typeSystem;
+    final TypeSystemImpl ts = this.sii.typeSystem;
     // Type counting starts at 1.
     final int numTypes = ts.getNumberOfTypes() + 1;
     // Can't instantiate arrays of generic types.
@@ -1246,7 +1279,7 @@ public class FSIndexRepositoryImpl imple
       return iicp;
     }
     final Type superType = comparator.getType();
-    final Vector<Type> types = 
this.typeSystem.getDirectlySubsumedTypes(superType);
+    final Vector<Type> types = 
this.sii.typeSystem.getDirectlySubsumedTypes(superType);
     final int max = types.size();
     FSIndexComparator compCopy;
     for (int i = 0; i < max; i++) {
@@ -1284,29 +1317,29 @@ public class FSIndexRepositoryImpl imple
   }
 
   public LinearTypeOrder getDefaultTypeOrder() {
-    if (this.defaultTypeOrder == null) {
-      if (this.defaultOrderBuilder == null) {
-        this.defaultOrderBuilder = new 
LinearTypeOrderBuilderImpl(this.typeSystem);
+    if (this.sii.defaultTypeOrder == null) {
+      if (this.sii.defaultOrderBuilder == null) {
+        this.sii.defaultOrderBuilder = new 
LinearTypeOrderBuilderImpl(this.sii.typeSystem);
       }
       try {
-        this.defaultTypeOrder = this.defaultOrderBuilder.getOrder();
+        this.sii.defaultTypeOrder = this.sii.defaultOrderBuilder.getOrder();
       } catch (final CASException e) {
         // Since we're doing this on an existing type names, we can't
         // get here.
       }
     }
-    return this.defaultTypeOrder;
+    return this.sii.defaultTypeOrder;
   }
 
   public LinearTypeOrderBuilder getDefaultOrderBuilder() {
-    if (this.defaultOrderBuilder == null) {
-      this.defaultOrderBuilder = new 
LinearTypeOrderBuilderImpl(this.typeSystem);
+    if (this.sii.defaultOrderBuilder == null) {
+      this.sii.defaultOrderBuilder = new 
LinearTypeOrderBuilderImpl(this.sii.typeSystem);
     }
-    return this.defaultOrderBuilder;
+    return this.sii.defaultOrderBuilder;
   }
 
   void setDefaultTypeOrder(LinearTypeOrder order) {
-    this.defaultTypeOrder = order;
+    this.sii.defaultTypeOrder = order;
   }
 
   /**
@@ -1354,10 +1387,10 @@ public class FSIndexRepositoryImpl imple
     // // in which case we can't add the index.
     // Type oldType = cp.index.getType(); // Get old type from the index.
     // Type newType = comp.getType(); // Get new type from comparator.
-    // if (this.typeSystem.subsumes(oldType, newType)) {
+    // if (this.sii.typeSystem.subsumes(oldType, newType)) {
     // // We don't need to do anything.
     // return true;
-    // } else if (this.typeSystem.subsumes(newType, oldType)) {
+    // } else if (this.sii.typeSystem.subsumes(newType, oldType)) {
     // // Add the index, subsuming the old one.
     // cp = this.addIndexRecursive(comp);
     // // Replace the old index with the new one in the map.
@@ -1429,7 +1462,7 @@ public class FSIndexRepositoryImpl imple
       }
     }
     final Type indexType = iicp.index.getType();
-    if (!this.typeSystem.subsumes(indexType, type)) {
+    if (!this.sii.typeSystem.subsumes(indexType, type)) {
       final CASRuntimeException cre = new CASRuntimeException(
           CASRuntimeException.TYPE_NOT_IN_INDEX, new String[] { label, 
type.getName(),
               indexType.getName() });
@@ -1485,7 +1518,7 @@ public class FSIndexRepositoryImpl imple
       return 0;
     }
     int numFSs = indexVector.get(0).index.size();
-    final Vector<Type> typeVector = 
this.typeSystem.getDirectlySubsumedTypes(type);
+    final Vector<Type> typeVector = 
this.sii.typeSystem.getDirectlySubsumedTypes(type);
     final int max = typeVector.size();
     for (int i = 0; i < max; i++) {
       numFSs += getIndexSize(typeVector.get(i));
@@ -1514,7 +1547,7 @@ public class FSIndexRepositoryImpl imple
    */
   public void removeAllIncludingSubtypes(Type type) {
     removeAllExcludingSubtypes(type);
-    List<Type> subtypes = this.typeSystem.getDirectSubtypes(type);
+    List<Type> subtypes = this.sii.typeSystem.getDirectSubtypes(type);
     for (Type subtype : subtypes) {
       removeAllIncludingSubtypes(subtype);
     }
@@ -1653,14 +1686,20 @@ public class FSIndexRepositoryImpl imple
   }
 
   /*
+   * Only used by test cases
+   * Others call getDefaultOrderBuilder
+   * 
+   * This method always returns the newly created object which may be different
+   * (not identical == ) to the this.defaultOrderBuilder.  
+   * Not sure if that's important or a small bug... Oct 2014 schor
    * (non-Javadoc)
    * 
    * @see org.apache.uima.cas.admin.FSIndexRepositoryMgr#createTypeSortOrder()
    */
   public LinearTypeOrderBuilder createTypeSortOrder() {
-    final LinearTypeOrderBuilder orderBuilder = new 
LinearTypeOrderBuilderImpl(this.typeSystem);
-    if (this.defaultOrderBuilder == null) {
-      this.defaultOrderBuilder = orderBuilder;
+    final LinearTypeOrderBuilder orderBuilder = new 
LinearTypeOrderBuilderImpl(this.sii.typeSystem);
+    if (this.sii.defaultOrderBuilder == null) {
+      this.sii.defaultOrderBuilder = orderBuilder;
     }
     return orderBuilder;
   }
@@ -1689,12 +1728,12 @@ public class FSIndexRepositoryImpl imple
   }
 
   public LowLevelIndex ll_getIndex(String indexName, int typeCode) {
-    if (!this.typeSystem.isType(typeCode) || !this.cas.ll_isRefType(typeCode)) 
{
+    if (!this.sii.typeSystem.isType(typeCode) || 
!this.cas.ll_isRefType(typeCode)) {
       final LowLevelException e = new 
LowLevelException(LowLevelException.INVALID_INDEX_TYPE);
       e.addArgument(Integer.toString(typeCode));
       throw e;
     }
-    return (LowLevelIndex) getIndex(indexName, 
this.typeSystem.ll_getTypeForCode(typeCode));
+    return (LowLevelIndex) getIndex(indexName, 
this.sii.typeSystem.ll_getTypeForCode(typeCode));
   }
 
   public final void ll_addFS(int fsRef, boolean doChecks) {
@@ -1720,7 +1759,7 @@ public class FSIndexRepositoryImpl imple
     }
     if (size == 0) {
       // lazily create a default bag index for this type
-      final Type type = this.typeSystem.ll_getTypeForCode(typeCode);
+      final Type type = this.sii.typeSystem.ll_getTypeForCode(typeCode);
       final String defIndexName = getAutoIndexNameForType(type);
       final FSIndexComparator comparator = createComparator();
       comparator.setType(type);
@@ -1776,7 +1815,7 @@ public class FSIndexRepositoryImpl imple
       // We found one of the special auto-indexes which don't inherit down the 
tree. So, we
       // manually need to traverse the inheritance tree to look for more 
indexes. Note that
       // this is not necessary when we have a regular index
-      final List<Type> subtypes = this.typeSystem.getDirectSubtypes(type);
+      final List<Type> subtypes = this.sii.typeSystem.getDirectSubtypes(type);
       for (int i = 0; i < subtypes.size(); i++) {
         getAllIndexedFS(subtypes.get(i), iteratorList);
       }
@@ -1793,7 +1832,7 @@ public class FSIndexRepositoryImpl imple
       if (index.getIndexingStrategy() == FSIndex.DEFAULT_BAG_INDEX) {
         continue;
       }
-      if (this.typeSystem.subsumes(index.getType(), type)) {
+      if (this.sii.typeSystem.subsumes(index.getType(), type)) {
         if (index.getIndexingStrategy() != FSIndex.SET_INDEX) {
           iteratorList.add(getIndex(label, type).iterator());
           // Done, found non-set index.
@@ -1811,7 +1850,7 @@ public class FSIndexRepositoryImpl imple
     // No index for this type was found at all. Since the auto-indexes are 
created on demand for
     // each type, there may be gaps in the inheritance chain. So keep 
descending the inheritance
     // tree looking for relevant indexes.
-    final List subtypes = this.typeSystem.getDirectSubtypes(type);
+    final List subtypes = this.sii.typeSystem.getDirectSubtypes(type);
     for (int i = 0; i < subtypes.size(); i++) {
       getAllIndexedFS((Type) subtypes.get(i), iteratorList);
     }

Modified: uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA 
Annotation Viewer.launch
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA%20Annotation%20Viewer.launch?rev=1633891&r1=1633890&r2=1633891&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Annotation 
Viewer.launch (original)
+++ uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Annotation 
Viewer.launch Thu Oct 23 17:27:40 2014
@@ -1,34 +1,16 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-   Licensed to the Apache Software Foundation (ASF) under one
-   or more contributor license agreements.  See the NOTICE file
-   distributed with this work for additional information
-   regarding copyright ownership.  The ASF licenses this file
-   to you under the Apache License, Version 2.0 (the
-   "License"); you may not use this file except in compliance
-   with the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing,
-   software distributed under the License is distributed on an
-   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-   KIND, either express or implied.  See the License for the
-   specific language governing permissions and limitations
-   under the License.    
--->
-
-<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
-<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.tools.AnnotationViewerMain"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
-<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
-<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
-<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
-<mapAttribute key="org.eclipse.debug.core.environmentVariables">
-<mapEntry key="LD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:LD_LIBRARY_PATH}"/>
-<mapEntry key="PATH" 
value="${env_var:UIMA_HOME}/uimacpp/bin;${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src;${env_var:PATH}"/>
-<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
-</mapAttribute>
-</launchConfiguration>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
+<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
+<mapAttribute key="org.eclipse.debug.core.environmentVariables">
+<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
+<mapEntry key="LD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:LD_LIBRARY_PATH}"/>
+<mapEntry key="PATH" 
value="${env_var:UIMA_HOME}/uimacpp/bin;${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src;${env_var:PATH}"/>
+</mapAttribute>
+<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.classpathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.tools.AnnotationViewerMain"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
+<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
+</launchConfiguration>

Modified: uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA CAS 
Visual Debugger.launch
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA%20CAS%20Visual%20Debugger.launch?rev=1633891&r1=1633890&r2=1633891&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA CAS Visual 
Debugger.launch (original)
+++ uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA CAS Visual 
Debugger.launch Thu Oct 23 17:27:40 2014
@@ -1,40 +1,22 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-   Licensed to the Apache Software Foundation (ASF) under one
-   or more contributor license agreements.  See the NOTICE file
-   distributed with this work for additional information
-   regarding copyright ownership.  The ASF licenses this file
-   to you under the Apache License, Version 2.0 (the
-   "License"); you may not use this file except in compliance
-   with the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing,
-   software distributed under the License is distributed on an
-   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-   KIND, either express or implied.  See the License for the
-   specific language governing permissions and limitations
-   under the License.    
--->
-
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
-<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.tools.cvd.CVD"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
-<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
 <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
 <listEntry value="/uimaj-examples"/>
 </listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Duima.tools.cvd.manpath=${env_var:UIMA_HOME}/docs/html&quot; 
&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
 <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
 <listEntry value="4"/>
 </listAttribute>
 <booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
 <mapAttribute key="org.eclipse.debug.core.environmentVariables">
+<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
 <mapEntry key="LD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:LD_LIBRARY_PATH}"/>
 <mapEntry key="PATH" 
value="${env_var:UIMA_HOME}/uimacpp/bin;${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src;${env_var:PATH}"/>
-<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
 </mapAttribute>
+<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.classpathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.tools.cvd.CVD"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
+<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Duima.tools.cvd.manpath=${env_var:UIMA_HOME}/docs/html&quot; 
&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
 </launchConfiguration>

Modified: uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA CPE 
GUI.launch
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA%20CPE%20GUI.launch?rev=1633891&r1=1633890&r2=1633891&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA CPE 
GUI.launch (original)
+++ uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA CPE 
GUI.launch Thu Oct 23 17:27:40 2014
@@ -1,34 +1,16 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-   Licensed to the Apache Software Foundation (ASF) under one
-   or more contributor license agreements.  See the NOTICE file
-   distributed with this work for additional information
-   regarding copyright ownership.  The ASF licenses this file
-   to you under the Apache License, Version 2.0 (the
-   "License"); you may not use this file except in compliance
-   with the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing,
-   software distributed under the License is distributed on an
-   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-   KIND, either express or implied.  See the License for the
-   specific language governing permissions and limitations
-   under the License.    
--->
-
-<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
-<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.tools.cpm.CpmFrame"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
-<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
-<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
-<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
-<mapAttribute key="org.eclipse.debug.core.environmentVariables">
-<mapEntry key="LD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:LD_LIBRARY_PATH}"/>
-<mapEntry key="PATH" 
value="${env_var:UIMA_HOME}/uimacpp/bin;${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src;${env_var:PATH}"/>
-<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
-</mapAttribute>
-</launchConfiguration>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
+<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
+<mapAttribute key="org.eclipse.debug.core.environmentVariables">
+<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
+<mapEntry key="LD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:LD_LIBRARY_PATH}"/>
+<mapEntry key="PATH" 
value="${env_var:UIMA_HOME}/uimacpp/bin;${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src;${env_var:PATH}"/>
+</mapAttribute>
+<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.classpathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.tools.cpm.CpmFrame"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
+<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
+</launchConfiguration>

Modified: uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA 
Document Analyzer.launch
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA%20Document%20Analyzer.launch?rev=1633891&r1=1633890&r2=1633891&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Document 
Analyzer.launch (original)
+++ uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Document 
Analyzer.launch Thu Oct 23 17:27:40 2014
@@ -1,38 +1,22 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-   Licensed to the Apache Software Foundation (ASF) under one
-   or more contributor license agreements.  See the NOTICE file
-   distributed with this work for additional information
-   regarding copyright ownership.  The ASF licenses this file
-   to you under the Apache License, Version 2.0 (the
-   "License"); you may not use this file except in compliance
-   with the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing,
-   software distributed under the License is distributed on an
-   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-   KIND, either express or implied.  See the License for the
-   specific language governing permissions and limitations
-   under the License.    
--->
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
-<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.tools.docanalyzer.DocumentAnalyzer"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="4"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
-<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
-<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
 <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
 <listEntry value="/uimaj-examples"/>
 </listAttribute>
+<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
+<listEntry value="4"/>
+</listAttribute>
 <booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
 <mapAttribute key="org.eclipse.debug.core.environmentVariables">
+<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
 <mapEntry key="LD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:LD_LIBRARY_PATH}"/>
 <mapEntry key="PATH" 
value="${env_var:UIMA_HOME}/uimacpp/bin;${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src;${env_var:PATH}"/>
-<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
 </mapAttribute>
+<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.classpathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.tools.docanalyzer.DocumentAnalyzer"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
+<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
 </launchConfiguration>

Modified: uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA 
JCasGen Merge.launch
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA%20JCasGen%20Merge.launch?rev=1633891&r1=1633890&r2=1633891&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA JCasGen 
Merge.launch (original)
+++ uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA JCasGen 
Merge.launch Thu Oct 23 17:27:40 2014
@@ -1,35 +1,17 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
-   Licensed to the Apache Software Foundation (ASF) under one
-   or more contributor license agreements.  See the NOTICE file
-   distributed with this work for additional information
-   regarding copyright ownership.  The ASF licenses this file
-   to you under the Apache License, Version 2.0 (the
-   "License"); you may not use this file except in compliance
-   with the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing,
-   software distributed under the License is distributed on an
-   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-   KIND, either express or implied.  See the License for the
-   specific language governing permissions and limitations
-   under the License.    
--->
-
-<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
-<booleanAttribute key="org.eclipse.jdt.launching.DEFAULT_CLASSPATH" 
value="false"/>
-<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.eclipse.core.launcher.Main"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" 
value="-data ${system:ECLIPSE_HOME}/tempworkspace/jcasgen_merge -noupdate 
-nosplash -consolelog -application org.apache.uima.jcas.jcasgenp.JCasGen"/>
-<listAttribute key="org.eclipse.jdt.launching.CLASSPATH">
-<listEntry value="&lt;?xml version=&quot;1.0&quot; 
encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;runtimeClasspathEntry 
containerPath=&quot;org.eclipse.jdt.launching.JRE_CONTAINER&quot; 
javaProject=&quot;uimaj-examples&quot; path=&quot;1&quot; 
type=&quot;4&quot;/&gt;&#13;&#10;"/>
-<listEntry value="&lt;?xml version=&quot;1.0&quot; 
encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;runtimeClasspathEntry 
containerPath=&quot;ECLIPSE_HOME/startup.jar&quot; path=&quot;3&quot; 
type=&quot;3&quot;/&gt;&#13;&#10;"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
-<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/FileConsoleLogger.properties&quot;"/>
-<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
-<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
-</launchConfiguration>
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
+<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
+<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
+<listAttribute key="org.eclipse.jdt.launching.CLASSPATH">
+<listEntry value="&lt;?xml version=&quot;1.0&quot; 
encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;runtimeClasspathEntry 
containerPath=&quot;org.eclipse.jdt.launching.JRE_CONTAINER&quot; 
javaProject=&quot;uimaj-examples&quot; path=&quot;1&quot; 
type=&quot;4&quot;/&gt;&#13;&#10;"/>
+<listEntry value="&lt;?xml version=&quot;1.0&quot; 
encoding=&quot;UTF-8&quot;?&gt;&#13;&#10;&lt;runtimeClasspathEntry 
containerPath=&quot;ECLIPSE_HOME/startup.jar&quot; path=&quot;3&quot; 
type=&quot;3&quot;/&gt;&#13;&#10;"/>
+</listAttribute>
+<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.classpathProvider"/>
+<booleanAttribute key="org.eclipse.jdt.launching.DEFAULT_CLASSPATH" 
value="false"/>
+<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.eclipse.core.launcher.Main"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" 
value="-data ${system:ECLIPSE_HOME}/tempworkspace/jcasgen_merge -noupdate 
-nosplash -consolelog -application org.apache.uima.jcas.jcasgenp.JCasGen"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
+<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/FileConsoleLogger.properties&quot;"/>
+</launchConfiguration>

Modified: uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA 
JCasGen.launch
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA%20JCasGen.launch?rev=1633891&r1=1633890&r2=1633891&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA 
JCasGen.launch (original)
+++ uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA 
JCasGen.launch Thu Oct 23 17:27:40 2014
@@ -1,33 +1,17 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-   Licensed to the Apache Software Foundation (ASF) under one
-   or more contributor license agreements.  See the NOTICE file
-   distributed with this work for additional information
-   regarding copyright ownership.  The ASF licenses this file
-   to you under the Apache License, Version 2.0 (the
-   "License"); you may not use this file except in compliance
-   with the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing,
-   software distributed under the License is distributed on an
-   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-   KIND, either express or implied.  See the License for the
-   specific language governing permissions and limitations
-   under the License.    
--->
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
-<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.tools.jcasgen.Jg"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="4"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
-<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/FileConsoleLogger.properties&quot;"/>
-<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
 <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
 <listEntry value="/uimaj-examples"/>
 </listAttribute>
+<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
+<listEntry value="4"/>
+</listAttribute>
 <booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
+<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
 <stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.classpathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.tools.jcasgen.Jg"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
+<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/FileConsoleLogger.properties&quot;"/>
 </launchConfiguration>

Modified: uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA PEAR 
Installer.launch
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA%20PEAR%20Installer.launch?rev=1633891&r1=1633890&r2=1633891&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA PEAR 
Installer.launch (original)
+++ uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA PEAR 
Installer.launch Thu Oct 23 17:27:40 2014
@@ -1,38 +1,22 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-   Licensed to the Apache Software Foundation (ASF) under one
-   or more contributor license agreements.  See the NOTICE file
-   distributed with this work for additional information
-   regarding copyright ownership.  The ASF licenses this file
-   to you under the Apache License, Version 2.0 (the
-   "License"); you may not use this file except in compliance
-   with the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing,
-   software distributed under the License is distributed on an
-   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-   KIND, either express or implied.  See the License for the
-   specific language governing permissions and limitations
-   under the License.    
--->
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
-<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.tools.pear.install.InstallPear"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="4"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
-<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
-<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
 <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
 <listEntry value="/uimaj-examples"/>
 </listAttribute>
+<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
+<listEntry value="4"/>
+</listAttribute>
 <booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
 <mapAttribute key="org.eclipse.debug.core.environmentVariables">
+<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
 <mapEntry key="LD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:LD_LIBRARY_PATH}"/>
 <mapEntry key="PATH" 
value="${env_var:UIMA_HOME}/uimacpp/bin;${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src;${env_var:PATH}"/>
-<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
 </mapAttribute>
+<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.classpathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.tools.pear.install.InstallPear"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
+<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
 </launchConfiguration>

Modified: uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Run 
AE.launch
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA%20Run%20AE.launch?rev=1633891&r1=1633890&r2=1633891&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Run 
AE.launch (original)
+++ uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Run 
AE.launch Thu Oct 23 17:27:40 2014
@@ -1,39 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-   Licensed to the Apache Software Foundation (ASF) under one
-   or more contributor license agreements.  See the NOTICE file
-   distributed with this work for additional information
-   regarding copyright ownership.  The ASF licenses this file
-   to you under the Apache License, Version 2.0 (the
-   "License"); you may not use this file except in compliance
-   with the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing,
-   software distributed under the License is distributed on an
-   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-   KIND, either express or implied.  See the License for the
-   specific language governing permissions and limitations
-   under the License.    
--->
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
-<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.tools.RunAE"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" 
value="&quot;${file_prompt:AE Descriptor}&quot; &quot;${folder_prompt:Input 
Directory}&quot; &quot;${folder_prompt:Output Directory}&quot;"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="4"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
-<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
-<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
 <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
 <listEntry value="/uimaj-examples"/>
 </listAttribute>
+<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
+<listEntry value="4"/>
+</listAttribute>
 <booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
 <mapAttribute key="org.eclipse.debug.core.environmentVariables">
+<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
 <mapEntry key="LD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:LD_LIBRARY_PATH}"/>
 <mapEntry key="PATH" 
value="${env_var:UIMA_HOME}/uimacpp/bin;${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src;${env_var:PATH}"/>
-<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
 </mapAttribute>
+<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.classpathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.tools.RunAE"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" 
value="&quot;${file_prompt:AE Descriptor}&quot; &quot;${folder_prompt:Input 
Directory}&quot; &quot;${folder_prompt:Output Directory}&quot;"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
+<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
 </launchConfiguration>

Modified: uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Run 
CPE.launch
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA%20Run%20CPE.launch?rev=1633891&r1=1633890&r2=1633891&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Run 
CPE.launch (original)
+++ uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Run 
CPE.launch Thu Oct 23 17:27:40 2014
@@ -1,39 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-   Licensed to the Apache Software Foundation (ASF) under one
-   or more contributor license agreements.  See the NOTICE file
-   distributed with this work for additional information
-   regarding copyright ownership.  The ASF licenses this file
-   to you under the Apache License, Version 2.0 (the
-   "License"); you may not use this file except in compliance
-   with the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing,
-   software distributed under the License is distributed on an
-   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-   KIND, either express or implied.  See the License for the
-   specific language governing permissions and limitations
-   under the License.    
--->
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
-<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.examples.cpe.SimpleRunCPE"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" 
value="&quot;${file_prompt:CPE Descriptor}&quot;"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="4"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
-<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
-<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
 <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
 <listEntry value="/uimaj-examples"/>
 </listAttribute>
+<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
+<listEntry value="4"/>
+</listAttribute>
 <booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
 <mapAttribute key="org.eclipse.debug.core.environmentVariables">
+<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
 <mapEntry key="LD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:LD_LIBRARY_PATH}"/>
 <mapEntry key="PATH" 
value="${env_var:UIMA_HOME}/uimacpp/bin;${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src;${env_var:PATH}"/>
-<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
 </mapAttribute>
+<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.classpathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.examples.cpe.SimpleRunCPE"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" 
value="&quot;${file_prompt:CPE Descriptor}&quot;"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
+<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
 </launchConfiguration>

Modified: uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Start 
VNS.launch
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA%20Start%20VNS.launch?rev=1633891&r1=1633890&r2=1633891&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Start 
VNS.launch (original)
+++ uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Start 
VNS.launch Thu Oct 23 17:27:40 2014
@@ -1,32 +1,16 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-   Licensed to the Apache Software Foundation (ASF) under one
-   or more contributor license agreements.  See the NOTICE file
-   distributed with this work for additional information
-   regarding copyright ownership.  The ASF licenses this file
-   to you under the Apache License, Version 2.0 (the
-   "License"); you may not use this file except in compliance
-   with the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing,
-   software distributed under the License is distributed on an
-   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-   KIND, either express or implied.  See the License for the
-   specific language governing permissions and limitations
-   under the License.    
--->
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
-<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.vinci.transport.vns.service.VNS"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="4"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
-<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
 <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
 <listEntry value="/uimaj-examples"/>
 </listAttribute>
+<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
+<listEntry value="4"/>
+</listAttribute>
 <booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
+<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
 <stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.classpathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.vinci.transport.vns.service.VNS"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
+<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
 </launchConfiguration>

Modified: uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Start 
Vinci Service.launch
URL: 
http://svn.apache.org/viewvc/uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA%20Start%20Vinci%20Service.launch?rev=1633891&r1=1633890&r2=1633891&view=diff
==============================================================================
--- uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Start Vinci 
Service.launch (original)
+++ uima/uimaj/trunk/uimaj-examples/src/main/run_configuration/UIMA Start Vinci 
Service.launch Thu Oct 23 17:27:40 2014
@@ -1,39 +1,23 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-   Licensed to the Apache Software Foundation (ASF) under one
-   or more contributor license agreements.  See the NOTICE file
-   distributed with this work for additional information
-   regarding copyright ownership.  The ASF licenses this file
-   to you under the Apache License, Version 2.0 (the
-   "License"); you may not use this file except in compliance
-   with the License.  You may obtain a copy of the License at
-
-     http://www.apache.org/licenses/LICENSE-2.0
-
-   Unless required by applicable law or agreed to in writing,
-   software distributed under the License is distributed on an
-   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-   KIND, either express or implied.  See the License for the
-   specific language governing permissions and limitations
-   under the License.    
--->
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
-<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.adapter.vinci.VinciAnalysisEngineService_impl"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" 
value="&quot;${file_prompt:Vinci Service Deployment Descriptor}&quot;"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="4"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
-<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
-<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
 <listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
 <listEntry value="/uimaj-examples"/>
 </listAttribute>
+<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
+<listEntry value="4"/>
+</listAttribute>
 <booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" 
value="true"/>
-<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
 <mapAttribute key="org.eclipse.debug.core.environmentVariables">
+<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
 <mapEntry key="LD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:LD_LIBRARY_PATH}"/>
 <mapEntry key="PATH" 
value="${env_var:UIMA_HOME}/uimacpp/bin;${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src;${env_var:PATH}"/>
-<mapEntry key="DYLD_LIBRARY_PATH" 
value="${env_var:UIMA_HOME}/uimacpp/lib:${env_var:UIMA_HOME}/uimacpp/examples/tutorial/src:${env_var:DYLD_LIBRARY_PATH}"/>
 </mapAttribute>
+<stringAttribute key="org.eclipse.debug.ui.target_debug_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.debug.ui.target_run_perspective" 
value="perspective_default"/>
+<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.classpathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.uima.adapter.vinci.VinciAnalysisEngineService_impl"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" 
value="&quot;${file_prompt:Vinci Service Deployment Descriptor}&quot;"/>
+<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="uimaj-examples"/>
+<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" 
value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
+<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" 
value="&quot;-Djava.util.logging.config.file=${env_var:UIMA_HOME}/config/Logger.properties&quot;
 -DVNS_HOST=localhost"/>
 </launchConfiguration>


Reply via email to