| <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"> |
| <!-- |
| 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. |
| --> |
| <modelVersion>4.0.0</modelVersion> |
| <parent> |
| <artifactId>addons-osgi-runtime</artifactId> |
| <groupId>org.apache.uima</groupId> |
| <version>2.3.1</version> |
| </parent> |
| <artifactId>ConfigurableFeatureExtractor-osgi</artifactId> |
| <name>ConfigurableFeatureExtractor bundle</name> |
| <description>ConfigurableFeatureExtractor OSGi bundle</description> |
| <packaging>bundle</packaging> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.uima</groupId> |
| <artifactId>ConfigurableFeatureExtractor</artifactId> |
| <version>2.3.1</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-jxpath</groupId> |
| <artifactId>commons-jxpath</artifactId> |
| <version>1.3</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.ant</groupId> |
| <artifactId>ant</artifactId> |
| <version>1.7.1</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-collections</groupId> |
| <artifactId>commons-collections</artifactId> |
| <version>3.2.1</version> |
| </dependency> |
| <dependency> |
| <groupId>commons-beanutils</groupId> |
| <artifactId>commons-beanutils</artifactId> |
| <version>1.8.2</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.xmlbeans</groupId> |
| <artifactId>xmlbeans</artifactId> |
| <version>2.4.0</version> |
| <exclusions> |
| <exclusion> |
| <groupId>stax</groupId> |
| <artifactId>stax-api</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>xml-resolver</groupId> |
| <artifactId>xml-resolver</artifactId> |
| <version>1.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.geronimo.specs</groupId> |
| <artifactId>geronimo-stax-api_1.0_spec</artifactId> |
| <version>1.0.1</version> |
| </dependency> |
| <dependency> |
| <groupId>jdom</groupId> |
| <artifactId>jdom</artifactId> |
| <version>1.0</version> |
| </dependency> |
| <dependency> |
| <groupId>xerces</groupId> |
| <artifactId>xercesImpl</artifactId> |
| <version>2.8.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.emf.ecore</groupId> |
| <artifactId>xmi</artifactId> |
| <version>2.3.0-v200706262000</version> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.emf</groupId> |
| <artifactId>common</artifactId> |
| <version>2.3.0-v200706262000</version> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.emf</groupId> |
| <artifactId>ecore</artifactId> |
| <version>2.3.0-v200706262000</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.eclipse.core</groupId> |
| <artifactId>runtime</artifactId> |
| <version>3.2.0-v20060603</version> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.osgi</groupId> |
| <artifactId>org.eclipse.osgi</artifactId> |
| <version>3.2.1</version> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.equinox</groupId> |
| <artifactId>org.eclipse.equinox.preferences</artifactId> |
| <version>3.2.1</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <finalName>org.apache.uima.cfe_${osgiVersion}</finalName> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <configuration> |
| <instructions> |
| <Import-Package>sun.*;org.jaxen.*;oracle.*;com.sun.*;javax.servlet.*;org.apache.log4j;org.apache.log;org.apache.tools.ant.*;org.eclipse.*;resolution:=optional,*</Import-Package> |
| <Export-Package>org.apache.uima.tools.cfe*</Export-Package> |
| <Embed-Dependency>*;scope=compile</Embed-Dependency> |
| <Bundle-SymbolicName>org.apache.uima.tools.cfe;${singleton}</Bundle-SymbolicName> |
| </instructions> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |