blob: c37acfb50828c7193a067d82a6d3cb61035180e4 [file] [log] [blame]
<?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.
-->
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>ruta-ep-engine</artifactId>
<version>2.0.1</version>
<parent>
<groupId>org.apache.uima</groupId>
<artifactId>ruta-parent</artifactId>
<version>2.0.1</version>
<relativePath>../ruta-parent/pom.xml</relativePath>
</parent>
<properties>
<postNoticeText>${uniWueNoticeText}
This product contains ANTLR libraries (http://www.antlr.org/),
licensed under the BSD License.
This product contains htmlparser libraries (http://htmlparser.sourceforge.net/),
licensed under the Common Public License.</postNoticeText>
<uimaScmProject>${project.artifactId}</uimaScmProject>
</properties>
<name>Apache UIMA Ruta Eclipse: ${project.artifactId}</name>
<url>${uimaWebsiteUrl}</url>
<description>Provides the UIMA Ruta engine to other Eclipse
plugins for their use</description>
<dependencies>
<!-- <dependency> <groupId>org.antlr</groupId> <artifactId>antlr-runtime</artifactId> <version>3.4</version>
<scope>compile</scope> </dependency> -->
<dependency>
<groupId>org.apache.uima</groupId>
<artifactId>ruta-core</artifactId>
<version>${project.parent.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
<scm>
<url>http://svn.apache.org/viewvc/uima/sandbox/ruta/tags/ruta-2.0.1-rc2/ruta-ep-engine</url>
<connection>scm:svn:http://svn.apache.org/repos/asf/uima/sandbox/ruta/tags/ruta-2.0.1-rc2/ruta-ep-engine</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/uima/sandbox/ruta/tags/ruta-2.0.1-rc2/ruta-ep-engine</developerConnection>
</scm>
<build>
<!-- don't use artifactId as first part of finalName, follow instead the eclipse convention -->
<finalName>org.apache.uima.ruta.engine_${parsedVersion.osgiVersion}</finalName>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<executions>
<execution>
<id>default-cli</id>
<configuration>
<excludes>
<exclude>release.properties</exclude> <!-- release generated artifact -->
<exclude>marker-file-identifying-*</exclude>
<exclude>issuesFixed/**</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<versionRange>[2.3,)</versionRange>
<goals>
<goal>unpack-dependencies</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<executions>
<execution>
<id>uima-bundle</id>
<configuration>
<instructions>
<_nouses>true</_nouses>
<_exportcontents>org.apache.uima.ruta,
org.apache.uima.ruta.action,
org.apache.uima.ruta.condition,
org.apache.uima.ruta.constraint,
org.apache.uima.ruta.engine,
org.apache.uima.ruta.expression,
org.apache.uima.ruta.expression.bool,
org.apache.uima.ruta.expression.list,
org.apache.uima.ruta.expression.number,
org.apache.uima.ruta.expression.resource,
org.apache.uima.ruta.expression.string,
org.apache.uima.ruta.expression.type,
org.apache.uima.ruta.extensions,
org.apache.uima.ruta.parser,
org.apache.uima.ruta.resource,
org.apache.uima.ruta.rule,
org.apache.uima.ruta.rule.quantifier,
org.apache.uima.ruta.seed,
org.apache.uima.ruta.type,
org.apache.uima.ruta.utils,
org.apache.uima.ruta.verbalize,
org.apache.uima.ruta.visitor,
org.antlr.runtime,
org.antlr.runtime.debug,
org.antlr.runtime.misc,
org.antlr.runtime.tree,
org.antlr.stringtemplate,
org.antlr.stringtemplate.language,
org.antlr.stringtemplate.misc,
antlr,
antlr.*,
org.htmlparser,
org.htmlparser.*,
org.apache.commons.lang3.*,
org.apache.commons.io.*
</_exportcontents>
<Require-Bundle>
org.apache.uima.runtime
</Require-Bundle>
<Import-Package>
</Import-Package>
<Embed-Dependency>*;scope=compile;inline=true</Embed-Dependency>
<Bundle-SymbolicName>org.apache.uima.ruta.engine;singleton:=true</Bundle-SymbolicName>
<Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
<Eclipse-ExtensibleAPI>true</Eclipse-ExtensibleAPI>
<!-- <Bundle-ActivationPolicy>lazy</Bundle-ActivationPolicy> -->
<Eclipse-BuddyPolicy>registered</Eclipse-BuddyPolicy>
<Eclipse-RegisterBuddy>org.apache.uima.runtime</Eclipse-RegisterBuddy>
</instructions>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpackDependentJars</id>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
<excludeArtifactIds>uimaj-core,uimaj-tools,uimaj-document-annotation,uimaj-adapter-vinci,jVinci,uimaj-cpe,tools</excludeArtifactIds>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>