You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by ea...@apache.org on 2009/10/07 22:12:14 UTC

svn commit: r822891 - /incubator/uima/uimacpp/trunk/examples/tutorial/descriptors/Deploy_MeetingAnnotator.xml

Author: eae
Date: Wed Oct  7 20:12:13 2009
New Revision: 822891

URL: http://svn.apache.org/viewvc?rev=822891&view=rev
Log:
UIMA-1079

Added:
    incubator/uima/uimacpp/trunk/examples/tutorial/descriptors/Deploy_MeetingAnnotator.xml

Added: incubator/uima/uimacpp/trunk/examples/tutorial/descriptors/Deploy_MeetingAnnotator.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimacpp/trunk/examples/tutorial/descriptors/Deploy_MeetingAnnotator.xml?rev=822891&view=auto
==============================================================================
--- incubator/uima/uimacpp/trunk/examples/tutorial/descriptors/Deploy_MeetingAnnotator.xml (added)
+++ incubator/uima/uimacpp/trunk/examples/tutorial/descriptors/Deploy_MeetingAnnotator.xml Wed Oct  7 20:12:13 2009
@@ -0,0 +1,46 @@
+<?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.
+    ***************************************************************
+   -->
+   
+<analysisEngineDeploymentDescription 
+  xmlns="http://uima.apache.org/resourceSpecifier">
+  
+  <name>C++ Meeting Annotator</name>
+  <description>Deploys the C++ version of the Meeting Annotator</description>
+  
+  <deployment protocol="jms" provider="activemq">
+    <service>
+      <custom name="run_top_level_CPP_service_as_separate_process"/>
+      <inputQueue endpoint="MeetingAnnotator" brokerURL="${defaultBrokerURL}"/>
+      <topDescriptor>
+       <import location="MeetingAnnotatorCPP.xml"/>
+      </topDescriptor>
+      <environmentVariables>
+       <environmentVariable name="Path">C:/Program Files/apache-uima/uimacpp/examples/tutorial/src;C:/Program Files/apache-uima/uimacpp/bin</environmentVariable>
+       <environmentVariable name="LD_LIBRARY_PATH">C:/Program Files/apache-uima/uimacpp/examples/tutorial/src:C:/Program Files/apache-uima/uimacpp/lib</environmentVariable>
+       <environmentVariable name="DYLD_LIBRARY_PATH">C:/Program Files/apache-uima/uimacpp/examples/tutorial/src:C:/Program Files/apache-uima/uimacpp/lib</environmentVariable>
+       <environmentVariable name="UIMACPP_DATAPATH">C:/mydata</environmentVariable>
+	</environmentVariables>
+    </service>
+  </deployment>
+
+</analysisEngineDeploymentDescription>