blob: 533f01dc5e11a717ca9a24bf9720fe3561ac9a9c [file] [log] [blame]
Stephane Frenot593bac32006-08-30 12:42:49 +00001<project>
Stephane Frenotd8e65472006-09-25 15:00:22 +00002
Stephane Frenot593bac32006-08-30 12:42:49 +00003 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
Karl Pauls8f1955b2006-12-06 16:43:49 +00006 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenot593bac32006-08-30 12:42:49 +00007 </parent>
Stephane Frenot50954082007-06-28 14:37:13 +00008
Stephane Frenot593bac32006-08-30 12:42:49 +00009 <modelVersion>4.0.0</modelVersion>
Stephane Frenot50954082007-06-28 14:37:13 +000010 <packaging>bundle</packaging>
Stephane Frenot8ed309a2006-08-31 14:04:13 +000011 <name>Apache Felix MOSGi obr remote manipulation tab for the JMX console</name>
Stephane Frenot593bac32006-08-30 12:42:49 +000012 <artifactId>org.apache.felix.mosgi.managedelements.obrprobe.tab</artifactId>
Stephane Frenot0afc7632006-12-22 10:45:14 +000013 <version>0.9.0-incubator-SNAPSHOT</version>
Stephane Frenot50954082007-06-28 14:37:13 +000014
Stephane Frenot593bac32006-08-30 12:42:49 +000015 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Stephane Frenot593bac32006-08-30 12:42:49 +000019 <scope>provided</scope>
20 </dependency>
21 <dependency>
22 <groupId>${pom.groupId}</groupId>
23 <artifactId>org.osgi.compendium</artifactId>
Stephane Frenot593bac32006-08-30 12:42:49 +000024 <scope>provided</scope>
25 </dependency>
26 <dependency>
27 <groupId>${pom.groupId}</groupId>
28 <artifactId>org.apache.felix.mosgi.console.ifc</artifactId>
Stephane Frenot593bac32006-08-30 12:42:49 +000029 <scope>provided</scope>
30 </dependency>
31 <dependency>
32 <groupId>${pom.groupId}</groupId>
33 <artifactId>org.apache.felix.bundlerepository</artifactId>
Stephane Frenot593bac32006-08-30 12:42:49 +000034 <scope>provided</scope>
35 </dependency>
36 </dependencies>
Stephane Frenotd8e65472006-09-25 15:00:22 +000037
Stephane Frenot593bac32006-08-30 12:42:49 +000038 <build>
39 <plugins>
40 <plugin>
Stephane Frenot50954082007-06-28 14:37:13 +000041 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-bundle-plugin</artifactId>
Stephane Frenot593bac32006-08-30 12:42:49 +000043 <extensions>true</extensions>
44 <configuration>
Stephane Frenot50954082007-06-28 14:37:13 +000045 <instructions>
46 <Bundle-Name>MOSGi obr remote manipulation tab for the JMX console</Bundle-Name>
47 <Bundle-Description>MOSGi obr remote manipulation tab for the JMX console</Bundle-Description>
48 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
49 <Bundle-Activator>org.apache.felix.mosgi.managedelements.obrprobe.tab.ObrProbeTabUI</Bundle-Activator>
50 <Export-Package>${pom.artifactId}</Export-Package>
51 </instructions>
Stephane Frenot593bac32006-08-30 12:42:49 +000052 </configuration>
53 </plugin>
54 </plugins>
55 </build>
Stephane Frenotd8e65472006-09-25 15:00:22 +000056
Stephane Frenot593bac32006-08-30 12:42:49 +000057</project>