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