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

svn commit: r1158014 - in /uima/addons/trunk: SimpleServer/src/docbook/simpleServerUserGuide.xml SnowballAnnotator/pom.xml

Author: schor
Date: Mon Aug 15 21:11:48 2011
New Revision: 1158014

URL: http://svn.apache.org/viewvc?rev=1158014&view=rev
Log:
no Jira - update http links to uima from incubator to the top level one.  

Modified:
    uima/addons/trunk/SimpleServer/src/docbook/simpleServerUserGuide.xml
    uima/addons/trunk/SnowballAnnotator/pom.xml

Modified: uima/addons/trunk/SimpleServer/src/docbook/simpleServerUserGuide.xml
URL: http://svn.apache.org/viewvc/uima/addons/trunk/SimpleServer/src/docbook/simpleServerUserGuide.xml?rev=1158014&r1=1158013&r2=1158014&view=diff
==============================================================================
--- uima/addons/trunk/SimpleServer/src/docbook/simpleServerUserGuide.xml (original)
+++ uima/addons/trunk/SimpleServer/src/docbook/simpleServerUserGuide.xml Mon Aug 15 21:11:48 2011
@@ -73,7 +73,7 @@ under the License.
   </listitem>
   <listitem>
   <para>The latest Apache UIMA release, plus the Apache UIMA sandbox add-ons.  See
-  <ulink url="http://incubator.apache.org/uima/downloads.cgi">the Apache UIMA download site</ulink>.
+  <ulink url="http://uima.apache.org/downloads.cgi">the Apache UIMA download site</ulink>.
    </para>
   </listitem>
   <listitem>

Modified: uima/addons/trunk/SnowballAnnotator/pom.xml
URL: http://svn.apache.org/viewvc/uima/addons/trunk/SnowballAnnotator/pom.xml?rev=1158014&r1=1158013&r2=1158014&view=diff
==============================================================================
--- uima/addons/trunk/SnowballAnnotator/pom.xml (original)
+++ uima/addons/trunk/SnowballAnnotator/pom.xml Mon Aug 15 21:11:48 2011
@@ -33,7 +33,6 @@
   <version>2.3.1-SNAPSHOT</version>
   <name>UIMA Annotator: ${project.artifactId}</name>
   <description>Annotator that annotates tokens using Snowball</description>  
-  <url>http://incubator.apache.org/uima</url>
   
   <!-- Special inheritance note
        even though the <scm> element that follows is exactly the 
@@ -114,6 +113,46 @@
         </plugin>         
       </plugins>
     </pluginManagement> 
+    
+    <plugins>
+          <plugin>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>maven-bundle-plugin</artifactId>
+            <!-- 2.3.5 accidentally required Java 6 -->
+            <version>2.3.4</version>
+            <executions>
+              <execution>
+                <id>uima-bundle</id>
+                <phase>integration-test</phase>
+                <goals><goal>manifest</goal></goals>
+                <configuration>
+                  <buildDirectory>${project.build.directory}/osgi</buildDirectory>
+                  <manifestLocation>${project.build.directory}/osgi/META-INF</manifestLocation>
+                  <instructions>
+                    <Export-Package>org.apache.uima,
+                      org.apache.uima.annotator,
+                      org.tartarus.snowball,
+                      org.tartarus.snowball.ext
+                    </Export-Package>
+                    <Import-Package>org.apache.log.*;resolution:=optional</Import-Package>
+                    <Embed-Dependency>*;scope=compile;</Embed-Dependency>
+                    <Embed-Directory>lib</Embed-Directory>
+                    <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
+                    <Eclipse-ExtensibleAPI>true</Eclipse-ExtensibleAPI>
+                    <Bundle-ClassPath>.,lib/${project.build.finalName}.jar,{maven-dependencies},lib/uimaj-core-${uimaDependencyVersion}.jar</Bundle-ClassPath>
+                    <Include-Resource>
+                      {maven-resources}, {maven-dependencies},
+                      lib/uimaj-core-${uimaDependencyVersion}.jar=${settings.localRepository}/org/apache/uima/uimaj-core/${uimaDependencyVersion}/uimaj-core-${uimaDependencyVersion}.jar
+                    </Include-Resource>
+                    <Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version>
+                    <Bundle-SymbolicName>${project.groupId}.${project.artifactId};singleton:=true</Bundle-SymbolicName>
+                  </instructions>
+                </configuration>
+              </execution>
+            </executions>
+</plugin>
+    
+    </plugins>
 
     <!-- add desc to test resources -->
 		<testResources>