blob: bfa5dc9fb7a7f6dc20ec2c2be3420d9f0617b95d [file] [log] [blame]
Carsten Ziegeler580814b2009-09-24 12:09:34 +00001<!--
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 Ziegeler29c833b2010-02-03 10:49:05 +000031 <version>1.0.0-SNAPSHOT</version>
Carsten Ziegeler580814b2009-09-24 12:09:34 +000032
33 <name>Apache Felix Web Console Event Plugin</name>
34 <description>
Felix Meschberger96f5e722009-09-25 21:40:38 +000035 This is a plugin for the Apache Felix OSGi web console for displaying
Carsten Ziegeler580814b2009-09-24 12:09:34 +000036 OSGi events.
37 </description>
38
39 <scm>
Carsten Ziegeler96784ce2009-09-29 06:29:17 +000040 <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 Ziegeler580814b2009-09-24 12:09:34 +000043 </scm>
44
45 <build>
46 <plugins>
47 <plugin>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>maven-bundle-plugin</artifactId>
Carsten Ziegelercdd884e2010-02-06 18:05:08 +000050 <version>2.0.1</version>
Carsten Ziegeler580814b2009-09-24 12:09:34 +000051 <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>
Carsten Ziegeler6e9a3ad2010-02-03 16:44:16 +000064 org.apache.felix.webconsole.plugins.event.*
Carsten Ziegeler580814b2009-09-24 12:09:34 +000065 </Private-Package>
Carsten Ziegeler580814b2009-09-24 12:09:34 +000066 <DynamicImport-Package>
Carsten Ziegeler6e9a3ad2010-02-03 16:44:16 +000067 org.osgi.service.event,org.osgi.service.cm
Carsten Ziegeler580814b2009-09-24 12:09:34 +000068 </DynamicImport-Package>
69 </instructions>
70 </configuration>
71 </plugin>
72 </plugins>
73 </build>
74
75 <dependencies>
76 <dependency>
77 <groupId>javax.servlet</groupId>
78 <artifactId>servlet-api</artifactId>
79 <version>2.4</version>
80 <scope>provided</scope>
81 </dependency>
82
83 <dependency>
84 <groupId>org.osgi</groupId>
85 <artifactId>org.osgi.core</artifactId>
86 <version>4.0.0</version>
87 <scope>provided</scope>
88 </dependency>
89 <dependency>
90 <groupId>org.osgi</groupId>
91 <artifactId>org.osgi.compendium</artifactId>
92 <version>4.0.0</version>
93 <scope>provided</scope>
94 </dependency>
Carsten Ziegeler580814b2009-09-24 12:09:34 +000095 </dependencies>
96</project>