blob: 9a2571c4bc584608e27f5fe3ce7ddf72f0809073 [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 Frenot0f068b62006-08-30 11:12:48 +000019<project>
Stephane Frenotff1bc2f2006-09-19 14:34:08 +000020
Stephane Frenot0f068b62006-08-30 11:12:48 +000021 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix</artifactId>
Carsten Ziegelerb61fe0e2008-01-03 09:24:12 +000024 <version>1.0.1</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000025 <relativePath>../../pom/pom.xml</relativePath>
Stephane Frenot0f068b62006-08-30 11:12:48 +000026 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +000027
Stephane Frenot0f068b62006-08-30 11:12:48 +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 bundles management</name>
Stephane Frenot0f068b62006-08-30 11:12:48 +000031 <artifactId>org.apache.felix.mosgi.managedelements.bundlesprobes</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000032 <version>0.9.0-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000033
Stephane Frenot0f068b62006-08-30 11:12:48 +000034 <dependencies>
35 <dependency>
36 <groupId>${pom.groupId}</groupId>
37 <artifactId>org.osgi.core</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000038 <version>1.1.0-SNAPSHOT</version>
Stephane Frenot0f068b62006-08-30 11:12:48 +000039 <scope>provided</scope>
40 </dependency>
41 <dependency>
42 <groupId>${pom.groupId}</groupId>
43 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000044 <version>0.9.0-SNAPSHOT</version>
Stephane Frenot0f068b62006-08-30 11:12:48 +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 Frenot0f068b62006-08-30 11:12:48 +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 Frenot0f068b62006-08-30 11:12:48 +000057 <scope>provided</scope>
58 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000059 <dependency>
60 <groupId>mx4j</groupId>
61 <artifactId>mx4j-jmx</artifactId>
62 <version>3.0.1</version>
63 <scope>provided</scope>
64 </dependency>
65
Stephane Frenot0f068b62006-08-30 11:12:48 +000066 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000067
Stephane Frenot0f068b62006-08-30 11:12:48 +000068 <build>
69 <plugins>
70 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000071 <groupId>org.apache.felix</groupId>
72 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000073 <version>1.1.0-SNAPSHOT</version>
Stephane Frenot0f068b62006-08-30 11:12:48 +000074 <extensions>true</extensions>
75 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000076 <instructions>
77 <Bundle-Name>MOSGi JMX MBean for OSGi bundles management</Bundle-Name>
78 <Bundle-Description>MOSGi JMX MBean for OSGi bundles management</Bundle-Description>
79 <Bundle-Activator>org.apache.felix.mosgi.managedelements.bundlesprobes.BundlesProbes</Bundle-Activator>
80 <Export-Package>${pom.artifactId}</Export-Package>
81 </instructions>
Stephane Frenot0f068b62006-08-30 11:12:48 +000082 </configuration>
83 </plugin>
84 </plugins>
85 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000086
Stephane Frenot0f068b62006-08-30 11:12:48 +000087</project>