Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 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> |
Guillaume Nodet | 2cb94d0 | 2009-08-07 09:55:51 +0000 | [diff] [blame] | 25 | <groupId>org.apache.felix.karaf.features</groupId> |
| 26 | <artifactId>features</artifactId> |
Guillaume Nodet | abe5600 | 2009-08-25 09:03:55 +0000 | [diff] [blame] | 27 | <version>0.9.0-SNAPSHOT</version> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 28 | </parent> |
| 29 | |
Guillaume Nodet | 2cb94d0 | 2009-08-07 09:55:51 +0000 | [diff] [blame] | 30 | <groupId>org.apache.felix.karaf.features</groupId> |
| 31 | <artifactId>org.apache.felix.karaf.features.management</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 32 | <packaging>bundle</packaging> |
Guillaume Nodet | abe5600 | 2009-08-25 09:03:55 +0000 | [diff] [blame] | 33 | <version>0.9.0-SNAPSHOT</version> |
Guillaume Nodet | 2cb94d0 | 2009-08-07 09:55:51 +0000 | [diff] [blame] | 34 | <name>Apache Felix Karaf :: Features Management</name> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 35 | |
Guillaume Nodet | c0d9772 | 2009-09-18 20:25:06 +0000 | [diff] [blame] | 36 | <properties> |
| 37 | <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory> |
| 38 | </properties> |
| 39 | |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 40 | <dependencies> |
| 41 | <dependency> |
| 42 | <groupId>org.apache.felix</groupId> |
| 43 | <artifactId>org.osgi.core</artifactId> |
| 44 | <scope>provided</scope> |
| 45 | </dependency> |
| 46 | |
| 47 | <dependency> |
| 48 | <groupId>org.apache.felix</groupId> |
| 49 | <artifactId>org.osgi.compendium</artifactId> |
| 50 | <scope>provided</scope> |
| 51 | </dependency> |
| 52 | |
| 53 | <dependency> |
Guillaume Nodet | 2cb94d0 | 2009-08-07 09:55:51 +0000 | [diff] [blame] | 54 | <groupId>org.apache.felix.karaf.features</groupId> |
| 55 | <artifactId>org.apache.felix.karaf.features.core</artifactId> |
| 56 | </dependency> |
| 57 | |
| 58 | <dependency> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 59 | <groupId>org.apache.felix</groupId> |
| 60 | <artifactId>org.apache.felix.bundlerepository</artifactId> |
| 61 | </dependency> |
| 62 | |
| 63 | <dependency> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 64 | <groupId>org.apache.felix.karaf.shell</groupId> |
| 65 | <artifactId>org.apache.felix.karaf.shell.console</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 66 | </dependency> |
| 67 | |
| 68 | <dependency> |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 69 | <groupId>org.apache.felix.karaf.shell</groupId> |
| 70 | <artifactId>org.apache.felix.karaf.shell.obr</artifactId> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 71 | </dependency> |
| 72 | |
| 73 | <dependency> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 74 | <groupId>org.springframework.osgi</groupId> |
| 75 | <artifactId>spring-osgi-core</artifactId> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 76 | <scope>test</scope> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 77 | </dependency> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 78 | <dependency> |
| 79 | <groupId>org.apache.servicemix.bundles</groupId> |
| 80 | <artifactId>org.apache.servicemix.bundles.junit</artifactId> |
| 81 | <scope>test</scope> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.easymock</groupId> |
| 85 | <artifactId>easymock</artifactId> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 88 | <dependency> |
| 89 | <groupId>org.slf4j</groupId> |
| 90 | <artifactId>slf4j-jdk14</artifactId> |
| 91 | <scope>test</scope> |
| 92 | </dependency> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 93 | </dependencies> |
| 94 | |
| 95 | <build> |
| 96 | <plugins> |
| 97 | <plugin> |
| 98 | <groupId>org.apache.felix</groupId> |
| 99 | <artifactId>maven-bundle-plugin</artifactId> |
| 100 | <configuration> |
| 101 | <instructions> |
Guillaume Nodet | c0d9772 | 2009-09-18 20:25:06 +0000 | [diff] [blame] | 102 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
Guillaume Nodet | 2cb94d0 | 2009-08-07 09:55:51 +0000 | [diff] [blame] | 103 | <Export-Package> |
Guillaume Nodet | c0d9772 | 2009-09-18 20:25:06 +0000 | [diff] [blame] | 104 | ${pom.artifactId}*;version=${pom.version} |
Guillaume Nodet | 2cb94d0 | 2009-08-07 09:55:51 +0000 | [diff] [blame] | 105 | </Export-Package> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 106 | <Import-Package> |
Guillaume Nodet | c0d9772 | 2009-09-18 20:25:06 +0000 | [diff] [blame] | 107 | !${pom.artifactId}*, |
Guillaume Nodet | fcf2d34 | 2009-06-18 20:57:23 +0000 | [diff] [blame] | 108 | javax.management, |
| 109 | javax.management.loading, |
Guillaume Nodet | 077bac5 | 2009-07-09 08:29:14 +0000 | [diff] [blame] | 110 | org.osgi.service.command, |
| 111 | org.apache.felix.gogo.commands, |
Guillaume Nodet | 91a52c0 | 2009-09-18 20:14:54 +0000 | [diff] [blame] | 112 | org.apache.felix.karaf.shell.console, |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 113 | * |
| 114 | </Import-Package> |
Guillaume Nodet | 2cb94d0 | 2009-08-07 09:55:51 +0000 | [diff] [blame] | 115 | <Private-Package>org.apache.felix.karaf.features.management.internal</Private-Package> |
Guillaume Nodet | 3e9a428 | 2009-05-04 16:30:02 +0000 | [diff] [blame] | 116 | <_versionpolicy>${bnd.version.policy}</_versionpolicy> |
Guillaume Nodet | 91fab3b | 2009-04-27 10:01:58 +0000 | [diff] [blame] | 117 | </instructions> |
| 118 | </configuration> |
| 119 | </plugin> |
| 120 | </plugins> |
| 121 | </build> |
Gert Vanthienen | 607b852 | 2009-05-02 19:57:13 +0000 | [diff] [blame] | 122 | </project> |