blob: 313fbcc3e0d5a7e306b99862ebe0279c46ed1504 [file] [log] [blame]
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +00003 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +00006 <version>1.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00007 <relativePath>../../pom/pom.xml</relativePath>
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +00008 </parent>
Stephane Frenotd8e65472006-09-25 15:00:22 +00009
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000010 <modelVersion>4.0.0</modelVersion>
Stephane Frenot50954082007-06-28 14:37:13 +000011 <packaging>bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000012 <name>Apache Felix MOSGi OSGi gateway status tab for the JMX console</name>
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000013 <artifactId>org.apache.felix.mosgi.managedelements.osgiprobes.tab</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000014 <version>0.9.0-SNAPSHOT</version>
Stephane Frenotd8e65472006-09-25 15:00:22 +000015
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000016 <dependencies>
17 <dependency>
18 <groupId>${pom.groupId}</groupId>
19 <artifactId>org.osgi.core</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000020 <version>1.1.0-SNAPSHOT</version>
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000021 <scope>provided</scope>
22 </dependency>
23 <dependency>
24 <groupId>${pom.groupId}</groupId>
25 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000026 <version>0.9.0-SNAPSHOT</version>
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000027 <scope>provided</scope>
28 </dependency>
29 <dependency>
30 <groupId>${pom.groupId}</groupId>
31 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000032 <version>0.9.0-SNAPSHOT</version>
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000033 <scope>provided</scope>
34 </dependency>
Stephane Frenotb91ef5b2007-07-03 14:43:31 +000035 <dependency>
36 <groupId>mx4j</groupId>
37 <artifactId>mx4j-jmx</artifactId>
38 <version>3.0.1</version>
39 <scope>provided</scope>
40 </dependency>
41
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000042 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000043
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000044 <build>
45 <plugins>
46 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000047 <groupId>org.apache.felix</groupId>
48 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000049 <version>1.1.0-SNAPSHOT</version>
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000050 <extensions>true</extensions>
51 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000052 <instructions>
53 <Bundle-Name>MOSGi OSGi gateway status tab for the JMX console</Bundle-Name>
54 <Bundle-Description>MOSGi OSGi gateway status tab for the JMX console</Bundle-Description>
55 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
56 <Bundle-Activator>org.apache.felix.mosgi.managedelements.osgiprobes.tab.OsgiProbesTabUI</Bundle-Activator>
57 <Export-Package>${pom.artifactId}</Export-Package>
58 </instructions>
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000059 </configuration>
60 </plugin>
61 </plugins>
62 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000063
Stephane Frenot4eb2a3d2006-07-21 10:19:58 +000064</project>