blob: 957f526faddcfcf3379cb66d13a7f856a9012310 [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 Frenot593bac32006-08-30 12:42:49 +000019<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +000020
Stephane Frenot593bac32006-08-30 12:42:49 +000021 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix</artifactId>
Carsten Ziegeler646b9f12008-01-16 07:44:32 +000024 <version>1.0.2</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000025 <relativePath>../../pom/pom.xml</relativePath>
Stephane Frenot593bac32006-08-30 12:42:49 +000026 </parent>
Stephane Frenot50954082007-06-28 14:37:13 +000027
Stephane Frenot593bac32006-08-30 12:42:49 +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 obr remote manipulation tab for the JMX console</name>
Stephane Frenot593bac32006-08-30 12:42:49 +000031 <artifactId>org.apache.felix.mosgi.managedelements.obrprobe.tab</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000032 <version>0.9.0-SNAPSHOT</version>
Stephane Frenot50954082007-06-28 14:37:13 +000033
Stephane Frenot593bac32006-08-30 12:42:49 +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 Frenot593bac32006-08-30 12:42:49 +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 Frenot593bac32006-08-30 12:42:49 +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 Frenot593bac32006-08-30 12:42:49 +000051 <scope>provided</scope>
52 </dependency>
53 <dependency>
54 <groupId>${pom.groupId}</groupId>
55 <artifactId>org.apache.felix.bundlerepository</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000056 <version>1.1.0-SNAPSHOT</version>
Stephane Frenot593bac32006-08-30 12:42:49 +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 Frenot593bac32006-08-30 12:42:49 +000066 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000067
Stephane Frenot593bac32006-08-30 12:42:49 +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>
Stuart McCulloch876ca722008-02-26 17:15:42 +000073 <version>1.4.0</version>
Stephane Frenot593bac32006-08-30 12:42:49 +000074 <extensions>true</extensions>
75 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000076 <instructions>
77 <Bundle-Name>MOSGi obr remote manipulation tab for the JMX console</Bundle-Name>
78 <Bundle-Description>MOSGi obr remote manipulation tab for the JMX console</Bundle-Description>
79 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
80 <Bundle-Activator>org.apache.felix.mosgi.managedelements.obrprobe.tab.ObrProbeTabUI</Bundle-Activator>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000081 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Stephane Frenot50954082007-06-28 14:37:13 +000082 <Export-Package>${pom.artifactId}</Export-Package>
83 </instructions>
Stephane Frenot593bac32006-08-30 12:42:49 +000084 </configuration>
85 </plugin>
86 </plugins>
87 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000088
Stephane Frenot593bac32006-08-30 12:42:49 +000089</project>