blob: 217a65690b9bca837bb160fc0056ae48393ce2db [file] [log] [blame]
<!--
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.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- groupId omitted - inherited from parent -->
<artifactId>uimaj-as-osgi-runtime</artifactId>
<packaging>bundle</packaging>
<!-- version omitted - inherited from parent-->
<name>Apache UIMA AS OSGI Runtime Fragment</name>
<url>http://incubator.apache.org/uima</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://svn.apache.org/viewvc/incubator/uima</url>
</scm>
<parent>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-eclipse-plugins</artifactId>
<version>2.3.0.incubating</version> <!-- this comment is a flag for changeVersion -->
<relativePath>../uimaj/eclipse-plugin-superPom</relativePath>
</parent>
<!-- These dependencies should just be all the jars that
need to be included in the library plugin -->
<dependencies>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-core</artifactId>
<version>${uimaj-release-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-cpe</artifactId>
<version>${uimaj-release-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-tools</artifactId>
<version>${uimaj-release-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-examples</artifactId>
<version>${uimaj-release-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-adapter-vinci</artifactId>
<version>${uimaj-release-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>jVinci</artifactId>
<version>${uimaj-release-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-as-core</artifactId>
<version>${uimaj-release-version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-as-jms</artifactId>
<version>${uimaj-release-version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>uimaj-as-activemq</artifactId>
<version>${uimaj-release-version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<finalName>org.apache.uima.runtime.uimaas_${uimaj-release-eclipse-version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<!-- version 1.4.0 to support _nouses instruction -->
<version>1.4.0</version>
<extensions>true</extensions>
<configuration>
<manifestLocation>META-INF</manifestLocation>
<instructions>
<!-- turn off "uses" generation because Eclipse 3.2.x doesn't work with them -->
<_nouses>true</_nouses>
<!-- export contents because we don't want the actual
java code included (although we could... as an
alternative to the jars - but might have a
versioning / control issue -->
<_exportcontents>org.apache.uima.aae,org.apache.uima.aae.client,
org.apache.uima.aae.controller,
org.apache.uima.aae.delegate,
org.apache.uima.aae.deploymentDescriptor,
org.apache.uima.aae.error,
org.apache.uima.aae.error.handler,
org.apache.uima.aae.handler,
org.apache.uima.aae.handler.input,
org.apache.uima.aae.jms_adapter,
org.apache.uima.aae.jmx,org.apache.uima.aae.jmx.monitor,
org.apache.uima.aae.message,
org.apache.uima.aae.monitor,
org.apache.uima.aae.monitor.statistics,
org.apache.uima.aae.spi.transport,
org.apache.uima.aae.spi.transport.vm,
org.apache.uima.adapter.jms,
org.apache.uima.adapter.jms.activemq,
org.apache.uima.adapter.jms.client,
org.apache.uima.adapter.jms.message,
org.apache.uima.adapter.jms.service,
org.apache.uima.examples.as,
org.apache.uima.jms.error.handler
</_exportcontents>
<Import-Package>org.apache.log4j;resolution:=optional,*
</Import-Package>
<Embed-Dependency>*;scope=compile;inline=true</Embed-Dependency>
<Fragement-Host>org.apache.uima.runtime</Fragement-Host>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>