Felix Meschberger | 706e045 | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
| 2 | <!-- |
| 3 | Licensed to the Apache Software Foundation (ASF) under one |
| 4 | or more contributor license agreements. See the NOTICE file |
| 5 | distributed with this work for additional information |
| 6 | regarding copyright ownership. The ASF licenses this file |
| 7 | to you under the Apache License, Version 2.0 (the |
| 8 | "License"); you may not use this file except in compliance |
| 9 | with the License. You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, |
| 14 | software distributed under the License is distributed on an |
| 15 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | KIND, either express or implied. See the License for the |
| 17 | specific language governing permissions and limitations |
| 18 | under the License. |
| 19 | --> |
| 20 | <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"> |
| 21 | |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.apache.felix</groupId> |
| 25 | <artifactId>felix-parent</artifactId> |
Felix Meschberger | 26e08a5 | 2011-06-30 13:55:25 +0000 | [diff] [blame] | 26 | <version>2</version> |
Felix Meschberger | 706e045 | 2011-06-21 12:43:10 +0000 | [diff] [blame] | 27 | <relativePath>../../../pom/pom.xml</relativePath> |
| 28 | </parent> |
| 29 | |
| 30 | <artifactId>org.apache.felix.webconsole.plugins.packageadmin</artifactId> |
| 31 | <packaging>bundle</packaging> |
| 32 | <version>0.0.1-SNAPSHOT</version> |
| 33 | |
| 34 | <name>Apache Felix Web Console Package Admin Service Plugin</name> |
| 35 | <description> |
| 36 | Plugin providing support to query the Package Admin service |
| 37 | for various details; e.g. finding duplicate package exports |
| 38 | or finding bundles exporting given packages |
| 39 | </description> |
| 40 | |
| 41 | <scm> |
| 42 | <connection> |
| 43 | scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/memoryusage |
| 44 | </connection> |
| 45 | <developerConnection> |
| 46 | scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/memoryusage |
| 47 | </developerConnection> |
| 48 | <url> |
| 49 | http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/memoryusage |
| 50 | </url> |
| 51 | </scm> |
| 52 | |
| 53 | <build> |
| 54 | <plugins> |
| 55 | <plugin> |
| 56 | <groupId>org.apache.maven.plugins</groupId> |
| 57 | <artifactId>maven-compiler-plugin</artifactId> |
| 58 | <configuration> |
| 59 | <source>1.5</source> |
| 60 | <target>1.5</target> |
| 61 | </configuration> |
| 62 | </plugin> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.felix</groupId> |
| 65 | <artifactId>maven-bundle-plugin</artifactId> |
| 66 | <version>2.0.1</version> |
| 67 | <extensions>true</extensions> |
| 68 | <configuration> |
| 69 | <instructions> |
| 70 | <Bundle-SymbolicName> |
| 71 | ${project.artifactId} |
| 72 | </Bundle-SymbolicName> |
| 73 | <Import-Package> |
| 74 | * |
| 75 | </Import-Package> |
| 76 | <Private-Package> |
| 77 | org.apache.felix.webconsole.plugins.packageadmin.* |
| 78 | </Private-Package> |
| 79 | <Bundle-Activator> |
| 80 | org.apache.felix.webconsole.plugins.packageadmin.internal.Activator |
| 81 | </Bundle-Activator> |
| 82 | </instructions> |
| 83 | </configuration> |
| 84 | </plugin> |
| 85 | </plugins> |
| 86 | </build> |
| 87 | <dependencies> |
| 88 | <dependency> |
| 89 | <groupId>org.osgi</groupId> |
| 90 | <artifactId>org.osgi.core</artifactId> |
| 91 | <version>4.0.0</version> |
| 92 | <scope>provided</scope> |
| 93 | </dependency> |
| 94 | <dependency> |
| 95 | <groupId>org.osgi</groupId> |
| 96 | <artifactId>org.osgi.compendium</artifactId> |
| 97 | <version>4.0.0</version> |
| 98 | <scope>provided</scope> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>javax.servlet</groupId> |
| 102 | <artifactId>servlet-api</artifactId> |
| 103 | <version>2.3</version> |
| 104 | <scope>provided</scope> |
| 105 | </dependency> |
| 106 | </dependencies> |
| 107 | </project> |