blob: f0a41f85ff155d0970833cddc680e347794b185b [file] [log] [blame]
Carsten Ziegelerb61fe0e2008-01-03 09:24:12 +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-->
Stephane Frenot2f1f7362006-07-21 10:05:56 +000019<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +000020
Stephane Frenot2f1f7362006-07-21 10:05:56 +000021 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix</artifactId>
Clement Escoffier4ae86972009-04-09 12:09:09 +000024 <version>1.0.4</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000025 <relativePath>../../pom/pom.xml</relativePath>
Stephane Frenot2f1f7362006-07-21 10:05:56 +000026 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +000027
Stephane Frenot2f1f7362006-07-21 10:05:56 +000028 <modelVersion>4.0.0</modelVersion>
Stephane Frenot50954082007-06-28 14:37:13 +000029 <packaging>bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000030 <name>Apache Felix MOSGi JMX MBean for OSGi gateway status</name>
Stephane Frenot2f1f7362006-07-21 10:05:56 +000031 <artifactId>org.apache.felix.mosgi.managedelements.osgiprobes</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000032 <version>0.9.0-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000033
Stephane Frenot2f1f7362006-07-21 10:05:56 +000034 <dependencies>
35 <dependency>
36 <groupId>${pom.groupId}</groupId>
37 <artifactId>org.osgi.core</artifactId>
Richard S. Hallf5a813c2008-11-19 18:55:40 +000038 <version>1.0.1</version>
Stephane Frenot2f1f7362006-07-21 10:05:56 +000039 <scope>provided</scope>
40 </dependency>
41 <dependency>
42 <groupId>${pom.groupId}</groupId>
43 <artifactId>org.osgi.compendium</artifactId>
Carsten Ziegelerc340ecf2008-01-28 07:21:59 +000044 <version>1.0.0</version>
Stephane Frenot2f1f7362006-07-21 10:05:56 +000045 <scope>provided</scope>
46 </dependency>
47 <dependency>
48 <groupId>${pom.groupId}</groupId>
49 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000050 <version>0.9.0-SNAPSHOT</version>
Stephane Frenot2f1f7362006-07-21 10:05:56 +000051 <scope>provided</scope>
52 </dependency>
53 <dependency>
54 <groupId>${pom.groupId}</groupId>
55 <artifactId>org.apache.felix.framework</artifactId>
Carsten Ziegelerfa25b9e2007-09-26 08:12:09 +000056 <version>1.0.0</version>
Stephane Frenot2f1f7362006-07-21 10:05:56 +000057 <scope>provided</scope>
58 </dependency>
Stephane Frenot07e99ca2008-06-05 14:18:22 +000059 <dependency>
60 <groupId>${pom.groupId}</groupId>
61 <artifactId>org.apache.felix.mosgi.jmx.agent</artifactId>
62 <scope>provided</scope>
63 <version>0.9.0-SNAPSHOT</version>
64 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000065 <dependency>
66 <groupId>mx4j</groupId>
67 <artifactId>mx4j-jmx</artifactId>
68 <version>3.0.1</version>
69 <scope>provided</scope>
70 </dependency>
71
Stephane Frenot2f1f7362006-07-21 10:05:56 +000072 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000073
Stephane Frenot2f1f7362006-07-21 10:05:56 +000074 <build>
75 <plugins>
76 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000077 <groupId>org.apache.felix</groupId>
78 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch876ca722008-02-26 17:15:42 +000079 <version>1.4.0</version>
Stephane Frenot2f1f7362006-07-21 10:05:56 +000080 <extensions>true</extensions>
81 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000082 <instructions>
83 <Bundle-Name>MOSGi JMX MBean for OSGi gateway status</Bundle-Name>
84 <Bundle-Description>MOSGi JMX MBean for OSGi gateway status</Bundle-Description>
85 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
86 <Bundle-Activator>org.apache.felix.mosgi.managedelements.osgiprobes.OsgiProbes</Bundle-Activator>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000087 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Stephane Frenot50954082007-06-28 14:37:13 +000088 <Export-Package>${pom.artifactId}</Export-Package>
89 </instructions>
Stephane Frenot2f1f7362006-07-21 10:05:56 +000090 </configuration>
91 </plugin>
92 </plugins>
93 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000094
Stephane Frenot2f1f7362006-07-21 10:05:56 +000095</project>