Gert Vanthienen | e798396 | 2010-03-04 12:19:22 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Guillaume Nodet | b21cadf | 2010-05-18 15:47:08 +0000 | [diff] [blame] | 2 | <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"> |
Gert Vanthienen | e798396 | 2010-03-04 12:19:22 +0000 | [diff] [blame] | 3 | |
| 4 | <!-- |
| 5 | |
| 6 | Licensed to the Apache Software Foundation (ASF) under one or more |
| 7 | contributor license agreements. See the NOTICE file distributed with |
| 8 | this work for additional information regarding copyright ownership. |
| 9 | The ASF licenses this file to You under the Apache License, Version 2.0 |
| 10 | (the "License"); you may not use this file except in compliance with |
| 11 | the License. You may obtain a copy of the License at |
| 12 | |
| 13 | http://www.apache.org/licenses/LICENSE-2.0 |
| 14 | |
| 15 | Unless required by applicable law or agreed to in writing, software |
| 16 | distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | See the License for the specific language governing permissions and |
| 19 | limitations under the License. |
| 20 | --> |
| 21 | |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
| 24 | <parent> |
| 25 | <artifactId>karaf</artifactId> |
| 26 | <groupId>org.apache.felix.karaf</groupId> |
Guillaume Nodet | e21429b | 2010-05-20 20:08:17 +0000 | [diff] [blame] | 27 | <version>1.7.0-SNAPSHOT</version> |
Gert Vanthienen | e798396 | 2010-03-04 12:19:22 +0000 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <groupId>org.apache.felix.karaf</groupId> |
| 31 | <artifactId>org.apache.felix.karaf.commons</artifactId> |
Guillaume Nodet | e21429b | 2010-05-20 20:08:17 +0000 | [diff] [blame] | 32 | <version>1.7.0-SNAPSHOT</version> |
Gert Vanthienen | e798396 | 2010-03-04 12:19:22 +0000 | [diff] [blame] | 33 | <packaging>bundle</packaging> |
| 34 | <name>Apache Felix Karaf :: Commons</name> |
| 35 | |
| 36 | <properties> |
| 37 | <appendedResourcesDirectory>${basedir}/../etc/appended-resources</appendedResourcesDirectory> |
| 38 | </properties> |
| 39 | |
| 40 | <dependencies> |
| 41 | <dependency> |
| 42 | <groupId>org.apache.felix</groupId> |
| 43 | <artifactId>org.osgi.core</artifactId> |
| 44 | <scope>provided</scope> |
| 45 | </dependency> |
| 46 | </dependencies> |
| 47 | |
| 48 | <build> |
| 49 | <plugins> |
| 50 | <plugin> |
| 51 | <groupId>org.apache.felix</groupId> |
| 52 | <artifactId>maven-bundle-plugin</artifactId> |
| 53 | <configuration> |
| 54 | <instructions> |
Chris Custine | 80977a9 | 2010-05-16 08:24:14 +0000 | [diff] [blame] | 55 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
| 56 | <Export-Package>${project.artifactId}*;version=${project.version}</Export-Package> |
Gert Vanthienen | e798396 | 2010-03-04 12:19:22 +0000 | [diff] [blame] | 57 | <Import-Package> |
Chris Custine | 80977a9 | 2010-05-16 08:24:14 +0000 | [diff] [blame] | 58 | !${project.artifactId}*, |
Gert Vanthienen | e798396 | 2010-03-04 12:19:22 +0000 | [diff] [blame] | 59 | * |
| 60 | </Import-Package> |
| 61 | <_versionpolicy>${bnd.version.policy}</_versionpolicy> |
| 62 | </instructions> |
| 63 | </configuration> |
| 64 | </plugin> |
| 65 | </plugins> |
| 66 | </build> |
| 67 | |
| 68 | </project> |