Guillaume Nodet | 8c0c8eb | 2009-10-22 18:01:48 +0000 | [diff] [blame] | 1 | <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"> |
| 2 | |
| 3 | <!-- |
| 4 | |
| 5 | Licensed to the Apache Software Foundation (ASF) under one or more |
| 6 | contributor license agreements. See the NOTICE file distributed with |
| 7 | this work for additional information regarding copyright ownership. |
| 8 | The ASF licenses this file to You under the Apache License, Version 2.0 |
| 9 | (the "License"); you may not use this file except in compliance with |
| 10 | the License. You may obtain a copy of the License at |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | Unless required by applicable law or agreed to in writing, software |
| 15 | distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | See the License for the specific language governing permissions and |
| 18 | limitations under the License. |
| 19 | --> |
| 20 | |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | |
| 23 | <parent> |
| 24 | <groupId>org.apache.felix.karaf.admin</groupId> |
| 25 | <artifactId>admin</artifactId> |
Guillaume Nodet | 1432d50 | 2009-11-27 12:32:26 +0000 | [diff] [blame] | 26 | <version>1.3.0-SNAPSHOT</version> |
Guillaume Nodet | 8c0c8eb | 2009-10-22 18:01:48 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <groupId>org.apache.felix.karaf.admin</groupId> |
| 30 | <artifactId>org.apache.felix.karaf.admin.management</artifactId> |
| 31 | <packaging>bundle</packaging> |
Guillaume Nodet | 1432d50 | 2009-11-27 12:32:26 +0000 | [diff] [blame] | 32 | <version>1.3.0-SNAPSHOT</version> |
Guillaume Nodet | 8c0c8eb | 2009-10-22 18:01:48 +0000 | [diff] [blame] | 33 | <name>Apache Felix Karaf :: Admin Management</name> |
| 34 | |
| 35 | <properties> |
| 36 | <appendedResourcesDirectory>${basedir}/../../etc/appended-resources</appendedResourcesDirectory> |
| 37 | </properties> |
| 38 | |
| 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>org.apache.felix</groupId> |
| 42 | <artifactId>org.osgi.core</artifactId> |
| 43 | <scope>provided</scope> |
| 44 | </dependency> |
| 45 | |
| 46 | <dependency> |
| 47 | <groupId>org.apache.felix</groupId> |
| 48 | <artifactId>org.osgi.compendium</artifactId> |
| 49 | <scope>provided</scope> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>org.apache.felix.karaf.admin</groupId> |
| 54 | <artifactId>org.apache.felix.karaf.admin.core</artifactId> |
| 55 | </dependency> |
| 56 | |
Chris Custine | 8fa9fbb | 2009-11-10 20:40:46 +0000 | [diff] [blame] | 57 | <dependency> |
| 58 | <groupId>org.easymock</groupId> |
| 59 | <artifactId>easymockclassextension</artifactId> |
| 60 | <version>${easymock.version}</version> |
| 61 | <scope>test</scope> |
| 62 | </dependency> |
| 63 | |
Guillaume Nodet | 8c0c8eb | 2009-10-22 18:01:48 +0000 | [diff] [blame] | 64 | </dependencies> |
| 65 | |
| 66 | <build> |
| 67 | <plugins> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.felix</groupId> |
| 70 | <artifactId>maven-bundle-plugin</artifactId> |
| 71 | <configuration> |
| 72 | <instructions> |
| 73 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 74 | <Export-Package> |
| 75 | ${pom.artifactId}*;version=${pom.version} |
| 76 | </Export-Package> |
| 77 | <Import-Package> |
| 78 | !${pom.artifactId}*, |
| 79 | javax.management, |
| 80 | javax.management.loading, |
| 81 | org.osgi.service.command, |
| 82 | org.apache.felix.gogo.commands, |
| 83 | org.apache.felix.karaf.shell.console, |
| 84 | * |
| 85 | </Import-Package> |
| 86 | <Private-Package>org.apache.felix.karaf.admin.management.internal</Private-Package> |
| 87 | <_versionpolicy>${bnd.version.policy}</_versionpolicy> |
| 88 | </instructions> |
| 89 | </configuration> |
| 90 | </plugin> |
| 91 | </plugins> |
| 92 | </build> |
| 93 | </project> |